/* Light Theme Variables */
:root {
    /* Colors */
    --primary-color: #375441;
    --secondary-color: #2A4033;
    --text-color: #2A2A2A;
    --background-light: #FFFDF8;
    --background-main: #F6F1E4;
    --card-background: #FFFFFF;
    --nav-background: rgba(246, 241, 228, 0.95);
    --border-color: #D8D3C6;
    --shadow-color: rgba(55, 84, 65, 0.08);
    --accent-color: #4A725A;
    --success-color: #3C6B4D;
    --error-color: #B44141;
    --gradient-start: #375441;
    --gradient-end: #4A725A;
    --muted-text: #666666;
}

/* Base Styles */
:root {
    --white: #FFFFFF;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-main);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--border-color);
    border-top: 5px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.error-message i {
    font-size: 3rem;
    color: var(--error-color);
    margin-bottom: 1rem;
}

.error-message p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.error-message button {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.error-message button:hover {
    background-color: var(--primary-color);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-main);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-main);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--background-light);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 900;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px var(--shadow-color);
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
    font-size: 1.2rem;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.theme-toggle:hover {
    transform: rotate(15deg);
}

.theme-toggle .fa-sun {
    display: none;
}

.theme-toggle .fa-moon {
    display: inline-block;
}

[data-theme='dark'] .theme-toggle .fa-sun {
    display: inline-block;
}

[data-theme='dark'] .theme-toggle .fa-moon {
    display: none;
}

/* Navigation */
.main-nav {
    background: var(--nav-background);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.back-link {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary-color);
}

.back-link i {
    margin-right: 8px;
    font-size: 1.2em;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.question-mark {
    display: inline-block;
    margin-left: 5px;
    color: var(--primary-color);
    transform: translateY(-5px);
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.8em;
    margin-left: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--background-light);
    color: var(--primary-color);
}

.cta-button-small {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.cta-button-small:hover {
    transform: translateY(-2px);
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-button span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hero-image-container {
        height: 400px;
    }

    .hero {
        padding: 60px 0 0 0;
    }

    .mobile-menu-button {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        transition: 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 20px;
    }

    .dropdown-arrow {
        display: none;
    }
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: 40px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(42, 64, 51, 0.7),
        rgba(42, 64, 51, 0.9)
    );
    pointer-events: none;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-image {
    max-width: 100%;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: var(--background-light);
}

.advantages h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: var(--card-background);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

/* About Section Styles */
.about-section {
    padding: 6rem 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2,
.section-header h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    color: var(--muted-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image {
    position: relative;
    padding-top: 75%;
}

.about-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0.2;
    border-radius: 20px;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-intro {
    margin-bottom: 1rem;
}

.about-intro h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.milestones {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.milestone {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-background);
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.milestone:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.milestone i {
    color: var(--primary-color);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.milestone-content h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.milestone-content p {
    color: var(--muted-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.mission-values {
    margin: 6rem 0;
    padding: 4rem 0;
    background: var(--background-main);
    border-radius: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 2rem;
}

.value-card {
    padding: 2.5rem;
    background: var(--card-background);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.value-card h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.value-card p {
    color: var(--muted-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.team-content {
    margin-top: 2rem;
}

.team-content p {
    color: var(--muted-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        padding-top: 60%;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 0;
    }

    .milestone:hover {
        transform: translateX(5px);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .mission-values {
        margin: 4rem 0;
        padding: 3rem 0;
    }

    .value-card {
        padding: 2rem;
    }

    .team-section {
        padding: 3rem 1rem;
    }
}

/* Navigation Download Buttons */
.download-buttons {
    display: flex;
    gap: 1rem;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.download-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.download-button i {
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .download-buttons {
        flex-direction: column;
        width: 100%;
    }

    .download-button {
        justify-content: center;
    }
}

/* App Store Buttons */
.app-stores {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.app-store-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: #000;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.app-store-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.app-store-button i {
    font-size: 1.5rem;
}

.app-store-button span {
    font-size: 0.9rem;
    text-align: left;
    line-height: 1.2;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.testimonials-slider {
    padding: 20px 40px;
    overflow: visible;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.testimonial-card {
    background: var(--card-background);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.1);
}

.stars {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Stats Container */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 10px;
    margin: 20px auto;
    max-width: 600px;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--muted-text);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Auto-refresh Toggle */
.auto-refresh-toggle {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auto-refresh-toggle i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.auto-refresh-toggle.active {
    background: var(--accent-color);
}

.auto-refresh-toggle.active i {
    transform: rotate(360deg);
}

.auto-refresh-toggle:hover {
    transform: scale(1.1);
}

/* Loading and Error States */
.loading-message,
.error-message {
    text-align: center;
    padding: 40px;
    width: 100%;
    color: var(--text-color);
}

.loading-message i,
.error-message i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.error-message i {
    color: var(--error-color);
}

.loading-message p,
.error-message p {
    font-size: 1.1rem;
    margin: 10px 0;
}

.loading-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid var(--background-light);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Product Gallery */
.product-gallery {
    padding: 80px 0;
    background-color: var(--background-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    background: none;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: var(--card-background);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px var(--shadow-color);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.product-price {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
}

.discounted-price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.condition {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--muted-text);
    font-weight: 500;
}

/* Promotional Banner */
.promo-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    box-shadow: 0 4px 20px var(--shadow-color);
}

.promo-banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.promo-content {
    padding-right: 40px;
}

.promo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.promo-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.promo-image {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trust Badges */
.trust-badges {
    padding: 60px 0;
    background-color: var(--background-light);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.badge-item {
    padding: 20px;
}

.badge-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 6px var(--shadow-color));
}

.badge-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.badge-item p {
    color: var(--text-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .promo-banner .container {
        grid-template-columns: 1fr;
    }

    .promo-content {
        padding-right: 0;
        text-align: center;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--background-light);
}

.features h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-background);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Final Section */
.cta-final {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color), #333);
    color: var(--white);
}

.cta-final h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .advantages h2,
    .testimonials h2,
    .features h2,
    .cta-final h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .cta-button {
        padding: 12px 24px;
    }
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--accent-color);
}

/* Privacy Policy Popup Styles */
.privacy-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.privacy-content {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
}

.privacy-content h3 {
    margin-bottom: 1rem;
}

.privacy-content p {
    margin-bottom: 1.5rem;
}

.privacy-content button {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.privacy-content button:hover {
    background-color: var(--accent-color);
}
