html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    width: 100%;
    text-align: center;
}

.header {
    width: 100%;
    background-color: #FFFFFF;
    padding: 10px 0;
    position: relative;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-image {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: #673AB7;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #673AB7;
}

.dropdown {
    position: relative;
}

.dropdown-content, .language-dropdown {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a, .language-dropdown a {
    color: #673AB7;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover, .language-dropdown a:hover {
    background-color: #f1f1f1;
}

.show {
    display: block;
}

.language-selector {
    position: relative;
}

#languageBtn {
    background-color: transparent;
    color: #673AB7;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
}

.language-dropdown {
    right: 0;
    min-width: 120px;
}

.language-dropdown a.active {
    background-color: #673AB7;
    color: white;
}

@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        transform: none;
        background-color: #FFFFFF;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background-color: transparent;
    }

    .language-selector {
        order: -1;
        margin-right: 5px;
    }

    #languageBtn {
        font-size: 14px;
        padding: 5px;
    }

    .language-dropdown {
        left: 0;
        right: auto;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }

    .nav-toggle {
        font-size: 20px;
    }
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 1px;
    padding: 0px;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
}

.feature {
    width: 100%;
    max-width: 100%;
    padding:30px 5%;
    margin: 0px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.feature1 {
    background-color: #FFFFFF;
}

.feature2 {
    background-color: #673AB7;
}

.feature3 {
    background-color: #FFFFFF;
}

.feature4 {
    background-color: #673AB7;
}

.feature5 {
    background-color: #FFFFFF;
}

.feature6 {
    background-color: #673AB7;
}

.feature img {
    width: 50%;
    max-width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.feature h2 {
    margin-top: 0px;
    padding: 0px;
}

.feature1 h2, .feature3 h2, .feature5 h2,.feature1 h3,.feature3 ul, .feature3 li {
    color: #673AB7;
}

.feature2 h2, .feature4 h2, .feature6 h2, .feature2 ul, .feature2 li {
    color: #FFFFFF;
}

.feature1 p, .feature3 p, .feature5 p {
    color: #673AB7;
}

.feature2 p, .feature4 p, .feature6 p {
    color: #FFFFFF;
}

.footer {
    background-color: #FFFFFF;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    max-width: 100%;
    bottom: 0;
    box-sizing: border-box;
}

.footer a {
    color: #aaa;
}

.footer p {
    color: #aaa;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px 0;
    background-color: #FFFFFF;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-column {
    flex: 1 1 200px;
    margin: 10px;
    text-align: center;
}

.footer-column h3 {
    margin-bottom: 10px;
    color: #9DA3AE;
    font-size: 16px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #727885;
    font-size: 14px;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        margin: 10px 0;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-column ul li a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .feature {
        padding: 10px 5%;
    }

    .feature img {
        width: 90%;
        max-width: 90%;
    }

    .feature h2 {
        font-size: 18px;
    }

    .feature p {
        font-size: 14px;
    }

    .footer {
        padding: 5px;
        font-size: 12px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-content h3 {
    margin-top: 0;
    color: #673AB7;
}

.modal-content ul {
    list-style-type: none;
    padding: 0;
}

.modal-content ul li {
    margin-bottom: 10px;
}

.modal-content ul li a {
    text-decoration: none;
    color: #673AB7;
    font-size: 16px;
}

.modal-content ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .dropdown-content {
        display: none !important;
    }

    #productsModal {
        display: none;
        position: fixed;
        z-index: 1002;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.4);
    }

    .modal-content {
        background-color: #fefefe;
        margin: 15% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 500px;
        border-radius: 5px;
    }

    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }
}

.faq-item {
    margin-bottom: 20px;
    text-align: left;
}

.faq-question {
    font-weight: bold;
    color: #673AB7;
    text-decoration: none;
    display: block;
    padding: 10px;
    border: 1px solid #673AB7;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #EDE7F6;
}

.pricing-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.pricing-plan {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-plan.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.pricing-plan.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 2rem;
    text-align: center;
}

.plan-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
}

.plan-price span {
    font-size: 1rem;
    font-weight: normal;
}

.plan-features {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.plan-features li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.plan-features li::before {
    content: '✓';
    color: #667eea;
    position: absolute;
    left: 0;
}

.cta-button {
    display: block;
    width: 80%;
    margin: 0 auto 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .pricing-plan {
        flex-basis: 100%;
    }
    
    .pricing-plan.featured {
        transform: none;
        order: -1;
    }
}

.install-button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #673AB7;
    background-color: #673AB7;
    color: white;
}

.install-button:hover {
    opacity: 0.9;
}

.install-button.button-inverse {
    background-color: white;
    color: #673AB7;
}

.install-button.button-inverse:hover {
    background-color: #673AB7;
    color: white;
}

.footer {
    background-color: #FFFFFF;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    max-width: 100%;
    bottom: 0;
    box-sizing: border-box;
}

.footer a {
    color: #aaa;
}

.footer p {
    color: #aaa;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px 0;
    background-color: #FFFFFF;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-column {
    flex: 1 1 200px;
    margin: 10px;
    text-align: center;
}

.footer-column h3 {
    margin-bottom: 10px;
    color: #9DA3AE;
    font-size: 16px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #727885;
    font-size: 14px;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        margin: 10px 0;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-column ul li a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .feature {
        padding: 10px 5%;
    }

    .feature img {
        width: 90%;
        max-width: 90%;
    }

    .feature h2 {
        font-size: 18px;
    }

    .feature p {
        font-size: 14px;
    }

    .footer {
        padding: 5px;
        font-size: 12px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-content h3 {
    margin-top: 0;
    color: #673AB7;
}

.modal-content ul {
    list-style-type: none;
    padding: 0;
}

.modal-content ul li {
    margin-bottom: 10px;
}

.modal-content ul li a {
    text-decoration: none;
    color: #673AB7;
    font-size: 16px;
}

.modal-content ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .dropdown-content {
        display: none !important;
    }

    #productsModal {
        display: none;
        position: fixed;
        z-index: 1002;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.4);
    }

    .modal-content {
        background-color: #fefefe;
        margin: 15% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 500px;
        border-radius: 5px;
    }

    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }
}

.faq-item {
    margin-bottom: 20px;
    text-align: left;
}

.faq-question {
    font-weight: bold;
    color: #673AB7;
    text-decoration: none;
    display: block;
    padding: 10px;
    border: 1px solid #673AB7;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #EDE7F6;
}

.pricing-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.pricing-plan {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-plan.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.pricing-plan.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 2rem;
    text-align: center;
}

.plan-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
}

.plan-price span {
    font-size: 1rem;
    font-weight: normal;
}

.plan-features {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.plan-features li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.plan-features li::before {
    content: '✓';
    color: #667eea;
    position: absolute;
    left: 0;
}

.cta-button {
    display: block;
    width: 80%;
    margin: 0 auto 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .pricing-plan {
        flex-basis: 100%;
    }
    
    .pricing-plan.featured {
        transform: none;
        order: -1;
    }
}

.install-button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #673AB7;
    background-color: #673AB7;
    color: white;
}

.install-button:hover {
    opacity: 0.9;
}

.install-button.button-inverse {
    background-color: white;
    color: #673AB7;
}

.install-button.button-inverse:hover {
    background-color: #673AB7;
    color: white;
}

/* New Styles for Optimized Content */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #673AB7 0%, #4285f4 100%);
    color: white;
    padding: 80px 5%;
    text-align: center;
    margin-bottom: 0;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background-color: #FFD700;
    color: #333;
}

.cta-button.primary:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: #673AB7;
}

/* Products Section */
.products-section {
    padding: 60px 5%;
    background-color: #f8f9fa;
}

.products-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #333;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge.premium {
    background-color: #FFD700;
    color: #333;
}

.product-badge.free {
    background-color: #28a745;
    color: white;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.product-image {
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #666;
}

.product-features h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.product-features li {
    padding: 8px 0;
    font-size: 1rem;
    color: #555;
}

.product-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    justify-content: flex-start;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #673AB7;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.product-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.learn-more-link {
    color: #673AB7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: #4285f4;
}

/* Use Cases Section */
.use-cases-section {
    padding: 60px 5%;
    background-color: white;
}

.use-cases-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #333;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
}

.use-case h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.use-case p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.use-case ul {
    list-style: none;
    padding: 0;
}

.use-case li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.use-case li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 5%;
    background-color: #f8f9fa;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    color: #333;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Comparison Section */
.comparison-section {
    padding: 60px 5%;
    background-color: white;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #333;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-table th {
    background-color: #673AB7;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table tr:hover {
    background-color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-stats {
        justify-content: center;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 5px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 5%;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .products-section,
    .use-cases-section,
    .testimonials-section,
    .comparison-section {
        padding: 40px 5%;
    }
    
    .product-features li {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 60px 5%;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #673AB7;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.faq-answer a {
    color: #673AB7;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-stats {
        justify-content: center;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 5px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 5%;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .products-section,
    .use-cases-section,
    .testimonials-section,
    .comparison-section,
    .faq-section {
        padding: 40px 5%;
    }
    
    .product-features li {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}