        :root {
            --primary-color: #6699cc;
            --primary-dark: #0c47a1;
            --accent-color: #ffcc00;
            --text-dark: #333;
            --text-light: #666;
            --white: #fff;
            --gradient-blue: linear-gradient(135deg, #6699cc 0%, #0c47a1 100%);
            --max-content-width: 500px; /* Maximum content width */
            --header-height: 70px;
            --footer-height: 100px;
        }

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

        body {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: #f9f9f9;
            overflow-x: hidden; /* Prevent horizontal scroll */
            width: 100%;
        }

        /* Main container to fix mobile display issues */
        .main-container {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: var(--header-height); /* Add space for fixed header */
        }

        /* Video Loading Spinner */
        .video-loading-overlay {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 250px;
            height: 375px;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10;
            border-radius: 8px;
        }

        .video-loading-overlay.show {
            display: flex;
        }

        .video-loading-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(255, 255, 255, 0.2);
            border-top: 3px solid #fff;
            border-radius: 50%;
            animation: video-spin 1s linear infinite;
        }

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

        /* Content wrapper to limit width */
        .content-wrapper {
            max-width: var(--max-content-width);
            width: 100%;
            margin: 0 auto;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Full-width container for sections that should span entire viewport */
        .full-width-container {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Modern Header */
        .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px; /* Allow it to expand if needed */
    min-height: 70px; /* Set a minimum height */
    background-color: transparent; /* Remove the full-width background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 10px 0;
}

.header-container {
    width: 100%;
    max-width: var(--max-content-width);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: white; /* Add background to container only */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Move shadow to container */
    border-radius: 0 0 8px 8px; /* Optional: round the bottom corners */
}

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo-container img {
            height: 40px;
            margin-right: 10px;
        }

        .logo-text {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 24px;
            color: var(--primary-dark);
            text-decoration: none;
            line-height: 0.9; /* Reduced from default (usually around 1.2-1.5) */
        }

        .nav-container {
            display: flex;
            align-items: center;
        }

        .desktop-nav {
            display: flex;
            list-style: none;
        }

        .desktop-nav li {
            margin: 0 15px;
        }

        .desktop-nav a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
        }

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

        .cta-button-header {
           background: var(--gradient-blue);
          color: white;
         padding: 8px 10px;
          border-radius: 50px;
          text-decoration: none;
          font-weight: 600;
          font-size: 14px;
          margin-left: 15px;
          margin-right: 15px; /* Add margin to the right */
          max-width: 120px; /* Limit the maximum width */
          text-align: center;
             transition: all 0.3s;
}

        .cta-button-header:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

            .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-dark);
    cursor: pointer;
    z-index: 1002;
    margin-left: 10px; /* Add some extra space */
}

      /* Update mobile menu to dropdown style */
.mobile-nav {
    display: none;
    position: absolute;
    top: var(--header-height); /* Position right below header */
    right: 20px; /* Position from the right instead of full width */
    width: auto; /* Auto width based on content */
    min-width: 200px; /* Minimum width */
    min-height: 50px;
    max-width: 250px; /* Maximum width */
    margin: 0 auto; /* Center the dropdown */
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(-20px);
    opacity: 0;
    padding: 0;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.mobile-nav.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin: 0;
    border-bottom: 1px solid #f0f4f8;
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: block;
    padding: 15px 20px;
    transition: background-color 0.3s;
}

.mobile-nav a:hover {
    background-color: #f5f9ff;
    color: var(--primary-color);
}

/* Remove the overlay as it's not needed for dropdown */
.mobile-nav-overlay {
    display: none !important;
}

/* Update mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-dark);
    cursor: pointer;
    z-index: 1002;
    margin-left: 10px;
    padding: 5px;
}

        /* Tagline Banner */
        .tagline-banner {
            position: absolute;
            top: 250px;
            left: 0;
            right: 0;
            text-align: center;
            z-index: 2;
        }

        .tagline-text {
            display: inline-block;
            background: var(--accent-color);
            color: var(--primary-dark);
            font-family: 'Bebas Neue', Arial, sans-serif;
            font-size: 20px;
            font-weight: bold;
            letter-spacing: 1px;
            padding: 10px 25px;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transform: rotate(-1deg);
            position: relative;
            text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
        }

        /* New Feature Banner */
        .new-feature-banner {
            position: absolute;
            top: 400px;
            left: 0;
            right: 0;
            text-align: center;
            z-index: 3;
            margin-bottom: 15px;
        }

        .new-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: linear-gradient(45deg, #ff6b35, #ff4757);
            color: white;
            font-family: 'Bebas Neue', Arial, sans-serif;
            font-size: 12px;
            font-weight: bold;
            letter-spacing: 1px;
            padding: 4px 12px;
            border-radius: 15px;
            box-shadow: 0 3px 10px rgba(255, 75, 87, 0.4);
            animation: badgePulse 2s infinite;
            transform: rotate(-30deg);
            z-index: 2;
            overflow: hidden;
            transition: all 0.3s ease;
            text-shadow: 
                -1px -1px 0 #333,
                1px -1px 0 #333,
                -1px 1px 0 #333,
                1px 1px 0 #333,
                0 0 2px rgba(0, 0, 0, 0.5);
        }

        .new-badge::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg, 
                transparent 30%, 
                rgba(255, 255, 255, 0.3) 50%, 
                transparent 70%
            );
            transform: rotate(45deg);
            animation: shine 2.5s infinite;
        }

        .feature-text {
            display: block;
            background: rgba(255, 255, 255, 0.95);
            color: var(--primary-dark);
            font-family: 'Poppins', Arial, sans-serif;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.5px;
            padding: 8px 20px;
            border-radius: 25px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            margin: 0 auto;
            max-width: 400px;
            border: 2px solid var(--accent-color);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .feature-text:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            border-color: var(--primary-color);
        }

        @keyframes badgePulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes shine {
            0% { left: -50%; }
            100% { left: 150%; }
        }

        .tagline-text::before,
        .tagline-text::after {
            content: '★';
            margin: 0 8px;
            color: var(--primary-dark);
            vertical-align: middle;
            display: inline-block;
            font-size: 16px;
        }

        /* Hero Sections */
       .section {
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Set aspect ratio to match 9:16 image */
    aspect-ratio: 9/16;
    max-height: none; /* Remove max-height constraint */
}

/* Make background images fit entirely within container */
.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
}


        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
            background: rgba(0, 0, 0, 0.4);
        }

        .dark-overlay {
            background: rgba(0, 0, 0, 0.6);
            justify-content: center;
        }

        /* Hero CTA */
        .hero-cta {
            background: var(--gradient-blue);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 800;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px 40px;
            margin-bottom: 50px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.2);
            max-width: 500px;
            width: 80%;
            position: relative;
            overflow: hidden;
            animation: pulse 2s infinite;
            z-index: 3; 
        }

        .hero-cta::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(to bottom right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.03); }
            100% { transform: scale(1); }
        }

        @keyframes shine {
            0% { left: -50%; }
            100% { left: 150%; }
        }

        .hero-cta .main-text {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 10px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            font-family: 'Bebas Neue', Arial, sans-serif;
            letter-spacing: 1px;
        }

        .hero-cta .sub-text {
            font-size: 18px;
            font-weight: 600;
        }

        .hero-cta .price-highlight {
            font-size: 24px;
            color: var(--accent-color);
            font-weight: 800;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
            display: inline-block;
            position: relative;
        }

        .hero-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(255, 204, 0, 0.3);
        }

        /* Feature List */
       /* Fix for the checklist styling */
.telegram-list {
    margin: 15px 0 10px 0; /* Reduced top margin */
    font-size: 16px; /* Reduced from 18px */
    line-height: 1.3; /* Reduced from 1.4 */
    max-width: 700px;
    width: 90%;
    gap:10px;
}

.telegram-list .check-item {
    background-color: rgba(0, 0, 0, 0.5); /* Darker background */
    color: white; /* Ensure white text */
    font-weight: 600; /* Make text bolder */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9); /* Stronger text shadow */
    padding: 8px 15px; /* Ensure good padding */
    border-radius: 50px;
    backdrop-filter: none; /* Add blur effect to background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Add subtle shadow */
}

/* Make the checkmark slightly smaller */
.telegram-list .check-item::before {
    content: '✅';
    font-size: 18px;
    margin-right: 8px; /* Add space between checkmark and text */
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5)); /* Add shadow to emoji */
}

        .telegram-list .check-item:hover {
            transform: translateX(5px);
            background-color: rgba(0, 0, 0, 0.6);
        }
.telegram-list .check-item span,
.telegram-list .check-item p,
.telegram-list .check-item div {
    opacity: 1 !important; /* Force full opacity */
    color: white !important; /* Force white color */
}

        /* Course Buttons */
        .button-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
            max-width: 550px;
            padding: 10px;
            margin: 10px auto 20px auto; /* Increased margin */
        }

        .button-container a {
            background: var(--gradient-blue);
            color: white;
            text-decoration: none;
            padding: 12px 15px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            transition: all 0.3s ease;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            white-space: normal;
            word-break: break-word;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: 2px solid transparent;
            position: relative;
        }

        .button-container a .main-text {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 5px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            font-family: 'Bebas Neue', Arial, sans-serif;
            letter-spacing: 0.5px;
        }

        .button-container a .sub-text {
            font-size: 16px;
            font-weight: 500;
            opacity: 0.9;
        }

        .button-container a .sub-text .price-text {
            font-weight: bold;
            color: var(--accent-color);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
            font-size: 18px;
            background: none;
            padding: 0;
            margin: 0;
            display: inline;
        }

        .button-container a:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            border: 2px solid var(--accent-color);
        }
        
        /* Dynamic Course Level Button */
        .dynamic-level-button {
            position: relative;
            overflow: hidden;
        }

        .dynamic-level-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: var(--accent-color);
            animation: pulseBorder 2s infinite;
        }

        @keyframes pulseBorder {
            0% { opacity: 0.3; }
            50% { opacity: 1; }
            100% { opacity: 0.3; }
        }

        /* How It Works Link - reduced margin */
.how-it-works-link {
    display: inline-block;
    margin: 20px 0; /* Reduced from 30px */
    padding: 10px 25px; /* Slightly reduced padding */
    background-color: #f5f9ff;
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    font-size: 15px; /* Slightly smaller font */
}

       .how-it-works-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

        .how-it-works-link i {
            margin-right: 8px;
        }

        .text-section {
            padding: 40px 20px;
            text-align: center;
            font-size: 18px;
            line-height: 1.8;
            color: var(--text-dark);
            background-color: #fff;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .text-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-blue);
        }

        .text-section .container {
            max-width: var(--max-content-width);
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .text-section h2 {
            font-size: 42px;
            margin-bottom: 10px;
            font-family: 'Bebas Neue', Arial, sans-serif;
            color: var(--primary-dark);
            font-weight: bold;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .text-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }

        .text-section p {
            margin-bottom: 15px;
            max-width: var(--max-content-width);
            margin-left: auto;
            margin-right: auto;
        }

        .text-section .feature-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin: 30px 0;
        }

        /* Video Section */
        .video-section {
    padding: 25px 20px; /* Reduced padding */
    background-color: #fff;
    text-align: center;
    width: 100%;
}
        .video-section .container {
    max-width: var(--max-content-width);
    margin: 0 auto;
}

        .video-section h2 {
            font-size: 42px;
            margin-bottom: 30px;
            font-family: 'Bebas Neue', Arial, sans-serif;
            color: var(--primary-dark);
            font-weight: bold;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .video-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }

        .video-container {
    margin: 0 auto;
    max-width: 300px; /* Reduced from 400px to 300px (75%) */
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
}

        .video-wrapper {
    position: relative;
    padding-bottom: 177.78%; /* 9:16 Aspect Ratio - maintains the ratio */
    height: 0;
    overflow: hidden;
    cursor: pointer;
}

        .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.3s ease;
}

        .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.video-overlay-text {
    position: absolute;
    bottom: 40%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    font-weight: 600;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

        .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; /* Reduced size */
    height: 60px; /* Reduced size */
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

        
.play-button i {
    color: white;
    font-size: 24px; /* Reduced size */
    margin-left: 3px; /* Slight offset for play icon */
}

        .video-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}
        .video-wrapper:hover .video-thumbnail {
    transform: scale(1.03);
}

        .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 2;
}

/* Add this additional rule to your existing CSS */
.video-section .video-wrapper .video-thumbnail .video-overlay-text {
    position: absolute !important;
    top: 5% !important;
    bottom: auto !important;
    left: 0 !important;
    right: 0 !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    padding: 10px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
    z-index: 5 !important;
    transform: translateY(0) !important;
    margin: 0 !important;
}

        /* Expandable Feature Cards */
        .feature-card {
            background: #fff;
            border-radius: 12px;
            padding: 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            flex: 1;
            min-width: 250px;
            max-width: 400px;
            text-align: left;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }

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

        .feature-card-header {
            background: var(--gradient-blue);
            color: white;
            padding: 15px 20px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .feature-card-header:hover {
            background-image: linear-gradient(135deg, #5589bb 0%, #0a3d8a 100%);
        }

        .feature-card-header i.feature-icon {
            font-size: 24px;
            margin-right: 10px;
        }

        .feature-card-header i.toggle-icon {
            transition: transform 0.3s ease;
            font-size: 16px;
        }

        .feature-card-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            padding: 0 20px;
        }

        .feature-card-content-inner {
            padding: 20px 0;
        }

        .feature-card.active .feature-card-header i.toggle-icon {
            transform: rotate(180deg);
        }

        .feature-card.active .feature-card-content {
            max-height: 500px;
        }

        .highlight-text {
            background: linear-gradient(135deg, #6699cc 0%, #0c47a1 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            font-weight: 700;
        }

        .text-section a {
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            position: relative;
            transition: color 0.3s;
        }

        .text-section a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--primary-color);
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.3s ease-out;
        }

        .text-section a:hover {
            color: var(--primary-dark);
        }

        .text-section a:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        /* App Section */
        .app-section {
            background-color: #e8f5e9;
            padding: 0;
            margin: 0 auto;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            max-width: var(--max-content-width);
            margin-top: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            border-radius: 12px;
            transition: all 0.3s ease;
            width: 100%;
        }

        .app-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/cubes.png');
            opacity: 0.4;
            border-radius: 12px;
            z-index: -1;
        }

        .app-toggle {
            background: linear-gradient(135deg, #43a047 0%, #1b5e20 100%);
            color: white;
            padding: 15px 20px;
            font-size: 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .app-toggle:hover {
            background-image: linear-gradient(135deg, #388e3c 0%, #124116 100%);
        }

        .app-toggle i {
            transition: transform 0.3s ease;
        }

        .app-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            padding: 0 20px;
        }

        .app-content-inner {
            padding: 20px 0;
        }

        .app-section.active .app-toggle i {
            transform: rotate(180deg);
        }

        .app-section.active .app-content {
            max-height: 500px;
        }

        /* Quiz Demo Section */
        .quiz-demo-section {
            background-color: #e8f5e9;
            padding: 0;
            margin: 0 auto;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            max-width: var(--max-content-width);
            margin-top: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            border-radius: 12px;
            transition: all 0.3s ease;
            width: 100%;
        }

        .quiz-demo-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/cubes.png');
            opacity: 0.4;
            border-radius: 12px;
            z-index: -1;
        }

        .quiz-demo-toggle {
            background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
            color: white;
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border-radius: 12px 12px 0 0;
        }

        .quiz-demo-toggle:hover {
            background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
        }

        .quiz-demo-toggle i:last-child {
            transition: transform 0.3s ease;
        }

        .quiz-demo-content {
            max-height: 0;
            overflow: hidden;
            background-color: white;
            transition: max-height 0.3s ease;
            border-radius: 0 0 12px 12px;
        }

        .quiz-demo-inner {
            padding: 20px 0;
        }

        .quiz-demo-section.active .quiz-demo-toggle i:last-child {
            transform: rotate(180deg);
        }

        .quiz-demo-section.active .quiz-demo-content {
            max-height: 5000px;
        }

        /* Quiz Container Styles */
        .quiz-container {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
            margin: 20px 0;
            border: 2px solid #e9ecef;
        }

        .loading-spinner {
            text-align: center;
            padding: 40px 20px;
            color: #6c757d;
        }

        .loading-spinner i {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .quiz-question {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 15px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .quiz-question h4 {
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-size: 18px;
        }

        .quiz-instructions {
            background: #e3f2fd;
            padding: 10px 15px;
            border-radius: 6px;
            margin-bottom: 15px;
            font-size: 14px;
            color: #1565c0;
        }

        .word-bank {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 6px;
        }

        .word-option {
            background: var(--primary-color);
            color: white;
            padding: 8px 12px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            user-select: none;
        }

        .word-option:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .word-option.used {
            background: #dc3545;
            opacity: 0.6;
            cursor: not-allowed;
        }

        .answer-area {
            min-height: 60px;
            border: 2px dashed #dee2e6;
            border-radius: 6px;
            padding: 15px;
            margin-bottom: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            background: white;
        }

        .answer-area.has-words {
            border-color: var(--primary-color);
            background: #f8fff9;
        }

        .answer-word {
            background: #28a745;
            color: white;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .answer-word:hover {
            background: #dc3545;
        }

        .quiz-controls {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 20px;
        }

        .quiz-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .quiz-btn:hover {
            background: var(--primary-dark);
        }

        .quiz-btn:disabled {
            background: #6c757d;
            cursor: not-allowed;
        }

        .quiz-result {
            padding: 15px;
            border-radius: 6px;
            margin-top: 15px;
            font-weight: 500;
        }

        .quiz-result.correct {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .quiz-result.incorrect {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .quiz-explanation {
            margin-top: 10px;
            font-size: 14px;
            color: #666;
        }

        /* Video Demo Styles */
        .video-demo-container {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 15px;
            margin: 15px 0;
            border: 2px solid #e9ecef;
        }

        .demo-video-section {
            text-align: center;
        }

        .demo-video-section h4 {
            color: var(--primary-dark);
            margin-bottom: 8px;
            font-size: 16px;
        }

        .demo-video-wrapper {
            margin: 10px 0;
            display: flex;
            justify-content: center;
            position: relative;
        }

        .demo-video-wrapper video {
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        /* Quiz Demo Quiz Container - Natural height, no scrolling */
        .quiz-demo-quiz-container {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 20px;
            margin: 20px 0;
        }

        .quiz-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px 0;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .question-counter {
            font-weight: 600;
            color: var(--primary-dark);
        }

        .nav-buttons {
            display: flex;
            gap: 10px;
        }

        .quiz-progress {
            width: 100%;
            height: 8px;
            background: #e9ecef;
            border-radius: 4px;
            margin: 10px 0;
            overflow: hidden;
        }

        .quiz-progress-bar {
            height: 100%;
            background: var(--primary-color);
            transition: width 0.3s ease;
            border-radius: 4px;
        }

        .start-quiz-btn {
            background: #28a745;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 20px 0;
        }

        .start-quiz-btn:hover {
            background: #218838;
            transform: translateY(-2px);
        }

        .cta-button {
            display: inline-block;
            background: var(--gradient-blue);
            color: #ffffff !important;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 15px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            border: 2px solid var(--accent-color);
        }

        /* Email Capture Modal */
        .email-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
        }

        .email-modal-content {
            background-color: white;
            margin: 10% auto;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            width: 90%;
            max-width: 500px;
            text-align: center;
            position: relative;
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .email-modal-close {
            position: absolute;
            right: 15px;
            top: 15px;
            font-size: 24px;
            color: #aaa;
            cursor: pointer;
            background: none;
            border: none;
        }

        .email-modal-close:hover {
            color: #000;
        }

        .email-modal h3 {
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-size: 24px;
        }

        .email-modal p {
            color: var(--text-dark);
            margin-bottom: 25px;
            font-size: 16px;
            line-height: 1.5;
        }

        .email-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .email-input {
            padding: 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .email-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(102, 153, 204, 0.1);
        }

        .email-submit-btn {
            background: var(--gradient-blue);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .email-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(102, 153, 204, 0.3);
        }

        .email-submit-btn:disabled {
            background: #6c757d;
            cursor: not-allowed;
            transform: none;
        }

        .email-success {
            display: none;
            color: #28a745;
            font-weight: 600;
            margin-top: 15px;
        }

        .email-error {
            display: none;
            color: #dc3545;
            font-weight: 600;
            margin-top: 15px;
        }

        /* Free Trial Badge */
        .free-trial-badge {
              position: absolute;
              bottom: 20px;
              right: 40px;
              background-color: var(--accent-color);
              color: var(--primary-dark);
              font-weight: bold;
              padding: 3px 9px;
              border-radius: 20px;
             font-size: 12px;
              transform: rotate(3deg);
              box-shadow: 0 3px 10px rgba(0,0,0,0.2);
             z-index: 4;
            }

        /* Recommended badge */
        .recommended-badge {
            position: absolute;
            top: -15px;
            right: -15px;
            background-color: var(--accent-color);
            color: var(--primary-dark);
            font-weight: bold;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            transform: rotate(3deg);
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            z-index: 2;
        }

        /* Gratis badge - fixed positioning */
        .gratis-badge {
            position: absolute;
            top: -15px;
            right: 15px;
            background-color: var(--accent-color);
            color: var(--primary-dark);
            font-weight: bold;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            transform: rotate(3deg);
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            z-index: 2;
        }

        /* Level selection button */
        .level-selection-button {
            display: inline-block;
            background: linear-gradient(135deg, #6699cc 0%, #0c47a1 100%);
            color: white !important;
            padding: 14px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            margin: 25px auto;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: 0 4px 15px rgba(102, 153, 204, 0.3);
            position: relative;
            text-shadow: none;
        }

        .level-selection-button:hover {
            background: linear-gradient(135deg, #5589bb 0%, #0a3d8a 100%);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(102, 153, 204, 0.4);
            border: 2px solid var(--accent-color);
        }

        .level-selection-button i {
            margin-right: 8px;
        }

        /* Affiliate and Other Sections */
        .affiliate-section,
        .learning-guide-section,
        .support-policies-section {
            max-width: var(--max-content-width);
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        /* Make footer background match content width */
.site-footer {
    background-color: transparent; /* Remove the full-width background */
    padding: 40px 0;
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.footer-container {
    width: 100%;
    max-width: var(--max-content-width);
    padding: 20px;
    background-color: #f0f4f8; /* Add background to container only */
    border-top: 5px solid var(--primary-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05); /* Optional: add subtle shadow */
    border-radius: 8px 8px 0 0; /* Optional: round the top corners */
}

        .footer-logo {
            flex: 0 0 100%;
            max-width: 100%;
            margin-bottom: 30px;
            text-align: center;
        }

        .footer-logo img {
            height: 60px;
            margin-bottom: 15px;
        }

        .footer-logo p {
            color: var(--text-light);
            font-size: 14px;
            max-width: 400px;
            margin: 0 auto;
        }

        .footer-links {
            flex: 0 0 100%;
            max-width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-links-column {
            flex: 0 0 calc(33.333% - 20px);
            min-width: 200px;
        }

        .footer-links-column h4 {
            color: var(--primary-dark);
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }

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

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

        .footer-links-column ul li a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 14px;
        }

        .footer-links-column ul li a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            flex: 0 0 100%;
            max-width: 100%;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #ddd;
        }

        .footer-bottom p {
            color: var(--text-light);
            font-size: 14px;
            margin: 0;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* Affiliate Section */
        .affiliate-section {
            background-color: #f8f9fa;
            padding: 0;
            margin: 0 auto;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
            overflow: hidden;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .affiliate-toggle {
            background: linear-gradient(135deg, #6699cc 0%, #0c47a1 100%);
            color: white;
            padding: 15px 20px;
            font-size: 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .affiliate-toggle:hover {
            background-image: linear-gradient(135deg, #5589bb 0%, #0a3d8a 100%);
        }

        .affiliate-toggle i {
            transition: transform 0.3s ease;
        }

        .affiliate-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            padding: 0 20px;
        }

        .affiliate-content-inner {
            padding: 20px 0;
        }

        .affiliate-section.active .affiliate-toggle i {
            transform: rotate(180deg);
        }

        .affiliate-section.active .affiliate-content {
            max-height: 500px;
        }

        /* Learning guide section */
        .learning-guide-section {
            background: linear-gradient(135deg, #f5f9ff 0%, #e1f5fe 100%);
            padding: 30px 20px;
            margin: 40px auto;
            border-radius: 12px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            border-left: 5px solid var(--primary-color);
        }

        .learning-guide-section h3 {
            color: var(--primary-dark);
            font-size: 24px;
            margin-bottom: 15px;
        }

        .learning-guide-section p {
            margin-bottom: 20px;
            font-size: 16px;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Support and Policies Section */
        .support-policies-section {
            padding: 40px 20px;
            background-color: #f9f9f9;
            margin: 0 auto;
        }

        .support-policies-section .container {
            max-width: 560px;
            margin: 0 auto;
        }

        .support-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .support-box i {
            font-size: 48px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .support-box h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }

        .support-text {
            margin-bottom: 15px;
        }

        .support-email {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .support-email:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        /* Policy Accordion */
        .policies-accordion {
            margin-top: 20px;
        }

        .policy-item {
            background-color: white;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

        .policy-header {
            padding: 15px 20px;
            background: #f0f4f8;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .policy-header h4 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-dark);
        }

        .policy-header i {
            transition: transform 0.3s ease;
        }

        .policy-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 20px;
        }

        .policy-item.active .policy-header i {
            transform: rotate(180deg);
        }

        .policy-item.active .policy-content {
            max-height: 500px;
            padding: 20px;
        }

        .policy-section {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-section h5 {
    color: var(--primary-dark);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Adjust the max-height to accommodate the larger content */
.policy-item.active .policy-content {
    max-height: 800px; /* Increased from 200px to fit all three policies */
    padding: 20px;
}

        /* Responsive Design */
        @media (min-width: 768px) {
            .tagline-text {
                font-size: 24px;
                padding: 12px 30px;
            }
            
            .hero-cta {
                padding: 25px 50px;
            }
            
            .hero-cta .main-text {
                font-size: 32px;
            }
            
            .hero-cta .sub-text {
                font-size: 20px;
            }
            
            .hero-cta .price-highlight {
                font-size: 28px;
            }

            .button-container a {
                padding: 20px 25px;
            }

            .button-container a .main-text {
                font-size: 26px;
            }

            .button-container a .sub-text {
                font-size: 18px;
            }

            .text-section h2 {
                font-size: 48px;
            }
        }

       @media (max-width: 3000px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: flex;
    }
}
            
            .tagline-text {
                font-size: 16px;
                padding: 8px 15px;
            }
            
            .text-section .feature-cards {
                flex-direction: column;
                align-items: center;
            }

            .feature-card {
                width: 100%;
                max-width: 100%;
            }
            
            .video-section h2 {
                font-size: 32px;
            }
            
            .play-button {
                width: 60px;
                height: 60px;
            }
            
            .play-button i {
                font-size: 24px;
            }
            
            .footer-links-column {
                flex: 0 0 100%;
                text-align: center;
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .tagline-text {
                font-size: 14px;
                padding: 6px 12px;
            }
            
            .button-container {
                padding: 5px;
            }

            .button-container a {
                padding: 12px 10px;
            }

            .button-container a .main-text {
                font-size: 18px;
            }

            .button-container a .sub-text {
                font-size: 14px;
            }

            .telegram-list {
                font-size: 14px;
            }

            .telegram-list .check-item {
                padding: 6px 12px;
                gap: 8px;
            }

            .telegram-list .check-item::before {
                font-size: 16px;
                margin-bottom: 5px;
            }

            .text-section h2 {
                font-size: 32px;
            }
            
            .hero-cta {
                padding: 15px 25px;
                width: 90%;
            }
            
            .hero-cta .main-text {
                font-size: 24px;
            }
            
            .hero-cta .sub-text {
                font-size: 16px;
            }
             .video-container {
        max-width: 250px; /* Even smaller on mobile */
    }
    
    .video-overlay-text {
        font-size: 14px;
        bottom: 50px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 20px;
    }
        }

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e1f5fe 100%);
    padding: 50px 0;
    margin: 40px 0;
    text-align: center;
    width: 100%;
}

.testimonials-section .container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-family: 'Bebas Neue', Arial, sans-serif;
    color: var(--primary-dark);
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.testimonial-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

.testimonial-content {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-color);
}

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

.testimonial-quote {
    flex: 1;
}

.testimonial-quote p {
    font-style: italic;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-quote p::before {
    content: '\201C';
    font-size: 50px;
    position: absolute;
    left: -15px;
    top: -20px;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 16px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.prev-button,
.next-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0 15px;
}

.prev-button:hover,
.next-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

@media (min-width: 768px) {
    .testimonial-content {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        padding: 30px;
    }
    
    .testimonial-image {
        margin-right: 25px;
        margin-bottom: 0;
    }
    
    .testimonial-quote p {
        font-size: 18px;
    }
    
    .testimonial-author {
        text-align: right;
    }
}

@media (max-width: 767px) {
    .testimonials-section h2 {
        font-size: 32px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-image {
        width: 100px;
        height: 100px;
    }
    
    .testimonial-quote p {
        font-size: 16px;
    }
}

/* Add these CSS rules to match header and footer container widths */

/* Update header container to match content width */
.header-container {
    width: 100%;
    max-width: var(--max-content-width); /* Match the content max-width */
    height: 65px; /* Fill the entire header height */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Update footer container to match content width */
.footer-container {
    max-width: var(--max-content-width); /* Match the content max-width */
    margin: 0 auto;
    padding: 0 20px;
}

/* Update footer columns to better fit in the narrower container */
.footer-links {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links-column {
    flex: 1;
    min-width: 150px; /* Smaller minimum width */
}

/* Make sure social links are centered and fit well */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .header-container, 
    .footer-container {
        padding: 0 15px;
    }
     .section {
        min-height: 800px; /* Further increase on smaller screens */
    }
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links-column {
        text-align: center;
        margin-bottom: 20px;
        min-width: 100%;
    }
}

/* Quiz Demo Level-Specific Icon Styling */
#metodo-demo-advanced .quiz-demo-toggle .fas.fa-graduation-cap {
    color: #ff6b35;
}

#metodo-demo-native .quiz-demo-toggle .fas.fa-crown {
    color: #8e44ad;
}

/* Multiple Choice Question Styling */
.multiple-choice-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.multiple-choice-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.multiple-choice-option:hover {
    border-color: #007bff;
    background-color: #f8f9ff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.15);
}

.multiple-choice-option input {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #007bff;
}

.multiple-choice-option span {
    flex: 1;
    font-size: 16px;
    line-height: 1.4;
}

.multiple-choice-option input:checked + span {
    font-weight: 600;
    color: #007bff;
}

.multiple-choice-option:has(input:checked) {
    border-color: #007bff;
    background-color: #e7f3ff;
}

/* Native Level Specific Styling */
.native-option {
    border-left: 4px solid #8e44ad;
}

.native-option:hover {
    border-color: #8e44ad;
    background-color: #f8f5ff;
}

.native-option:has(input:checked) {
    border-color: #8e44ad;
    background-color: #f3e5f5;
}

.native-option input:checked + span {
    color: #8e44ad;
}

/* Enhanced Quiz Results for All Levels */
.quiz-result.correct {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #c3e6cb;
    border-left: 4px solid #28a745;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.quiz-result.incorrect {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 1px solid #f5c6cb;
    border-left: 4px solid #dc3545;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.quiz-explanation {
    margin-top: 10px;
    padding: 10px;
    background: rgba(255,255,255,0.7);
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
}