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 {
    color: #673AB7;
}

.feature2 h2, .feature4 h2, .feature6 h2 {
    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;
}