 :root {
            --gold: #d4a855;
            --gold-light: #e8c778;
            --gold-dark: #b8923d;
            --cream: #f5f0e8;
            --charcoal: #1c1c1c;
            --charcoal-light: #2a2a2a;
            --charcoal-medium: #363636;
            --text-light: #e8e4dc;
            --text-muted: #9a958c;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Manrope', sans-serif;
            background-color: var(--charcoal);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Typography */
        .serif { font-family: 'Cormorant Garamond', serif; }
        .serif-italic { font-family: 'Cormorant Garamond', serif; font-style: italic; }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(180deg, rgba(28,28,28,0.98) 0%, rgba(28,28,28,0) 100%);
            transition: all 0.4s ease;
        }

        .navbar.scrolled {
            background: rgba(28,28,28,0.98);
            padding: 1rem 4%;
            backdrop-filter: blur(20px);
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo-subtitle {
            font-size: 0.65rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 2px;
        }

        .logo-main {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--gold);
            line-height: 1;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s;
        }

        .nav-links a:hover { color: var(--gold); }
        .nav-links a:hover::after { width: 100%; }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 2px;
            background: var(--gold);
            margin: 5px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 700px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: 
                linear-gradient(135deg, rgba(28,28,28,0.85) 0%, rgba(28,28,28,0.6) 50%, rgba(28,28,28,0.85) 100%),
                url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            transform: scale(1.1);
            animation: heroZoom 20s ease-in-out infinite alternate;
        }

        @keyframes heroZoom {
            0% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(212, 168, 85, 0.15);
            border: 1px solid rgba(212, 168, 85, 0.3);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-badge::before {
            content: '★';
            font-size: 0.65rem;
        }

        .hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero h1 span {
            display: block;
            font-style: italic;
            color: var(--gold);
        }

        .hero-text {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 2.5rem;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.8s both;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--charcoal);
            padding: 16px 40px;
            border: none;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gold-light);
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }

        .btn-primary:hover::before { transform: translateX(0); }
        .btn-primary span { position: relative; z-index: 1; }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            padding: 16px 40px;
            border: 1px solid rgba(255,255,255,0.3);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .btn-secondary:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: fadeInUp 1s ease 1s both;
        }

        .scroll-line {
            width: 1px;
            height: 50px;
            background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
            animation: scrollPulse 2s ease infinite;
        }

        @keyframes scrollPulse {
            0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
            50% { opacity: 1; transform: scaleY(1); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Section Styling */
        section {
            padding: 8rem 4%;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .section-label {
            font-size: 0.75rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .section-title span {
            font-style: italic;
            color: var(--gold);
        }

        .section-text {
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        /* Courses Section */
        .courses {
            background: var(--charcoal-light);
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .course-card {
            background: var(--charcoal);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 3rem 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
        }

        .course-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .course-card:hover::before { transform: scaleX(1); }
        .course-card:hover { transform: translateY(-10px); border-color: rgba(212,168,85,0.2); }

        .course-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            font-weight: 300;
            color: rgba(212,168,85,0.2);
            line-height: 1;
            margin-bottom: 1rem;
        }

        .course-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .course-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

        .course-features {
            list-style: none;
        }

        .course-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .course-features li::before {
            content: '◆';
            color: var(--gold);
            font-size: 0.5rem;
            margin-top: 6px;
        }

        /* Features Section */
        .features {
            background: var(--charcoal);
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .feature-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 8rem;
        }

        .feature-row:last-child { margin-bottom: 0; }
        .feature-row.reverse .feature-image { order: 2; }
        .feature-row.reverse .feature-content { order: 1; }

        .feature-image {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
        }

        .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .feature-image:hover img { transform: scale(1.05); }

        .feature-image::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid var(--gold);
            transform: translate(15px, 15px);
            pointer-events: none;
        }

        .feature-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .feature-content h3 span {
            display: block;
            font-style: italic;
            color: var(--gold);
            font-size: 1.8rem;
        }

        .feature-content p {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            font-size: 0.95rem;
        }

        .feature-list li::before {
            content: '✓';
            color: var(--gold);
            font-weight: 600;
        }

        /* Pricing Section */
        .pricing {
            background: linear-gradient(180deg, var(--charcoal-light) 0%, var(--charcoal) 100%);
        }

        .pricing-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .pricing-card {
            background: linear-gradient(145deg, var(--charcoal-medium) 0%, var(--charcoal) 100%);
            border: 1px solid rgba(212,168,85,0.3);
            padding: 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
        }

        .pricing-badge {
            display: inline-block;
            background: var(--gold);
            color: var(--charcoal);
            padding: 6px 20px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 2rem;
        }

        .pricing-old {
            font-size: 1.5rem;
            color: var(--text-muted);
            text-decoration: line-through;
            margin-bottom: 0.5rem;
        }

        .pricing-current {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            font-weight: 600;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .pricing-currency {
            font-size: 1.5rem;
            vertical-align: top;
        }

        .pricing-period {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        .countdown-container {
            background: rgba(0,0,0,0.3);
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .countdown-label {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .countdown {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .countdown-item {
            text-align: center;
        }

        .countdown-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--gold);
            line-height: 1;
        }

        .countdown-unit {
            font-size: 0.65rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .pricing-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
        }

        .pricing-content h3 span {
            font-style: italic;
            color: var(--gold);
        }

        .pricing-content p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .pricing-highlight {
            background: rgba(212,168,85,0.1);
            border-left: 3px solid var(--gold);
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .pricing-highlight p {
            margin: 0;
            font-size: 0.95rem;
        }

        .payment-methods {
            background: linear-gradient(135deg, rgba(212,168,85,0.15) 0%, rgba(212,168,85,0.05) 100%);
            border: 1px solid rgba(212,168,85,0.3);
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 2rem;
        }

        .payment-methods h4 {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
            font-weight: 600;
        }

        .payment-options {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .payment-option {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            background: rgba(0,0,0,0.2);
            padding: 1rem;
            border-radius: 8px;
        }

        .payment-icon {
            font-size: 1.3rem;
            line-height: 1;
        }

        .payment-option strong {
            display: block;
            color: var(--text-light);
            margin-bottom: 4px;
        }

        .payment-option p {
            margin: 0;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .payment-note {
            margin: 1rem 0 0;
            font-size: 0.8rem;
            color: var(--text-muted);
            text-align: center;
            font-style: italic;
        }

        /* Último cupo destacado */
        .status-last {
            color: #f39c12;
            font-weight: 700;
            animation: pulse-last 1.5s ease infinite;
        }

        .last-spot-row {
            background: linear-gradient(90deg, rgba(243,156,18,0.15) 0%, rgba(243,156,18,0.05) 100%) !important;
        }

        .status-last::before {
            content: '🔥 ';
            animation: bounce-fire 1s ease infinite;
            display: inline-block;
        }

        @keyframes pulse-last {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        @keyframes bounce-fire {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        /* Schedule Section */
        .schedule {
            background: var(--charcoal);
            padding: 4rem 4%;
        }

        .schedule .section-header {
            margin-bottom: 3rem;
        }

        .schedule-tables {
            max-width: 1000px;
            margin: 0 auto;
        }

        .schedule-month {
            margin-bottom: 2.5rem;
        }

        .schedule-month:last-child { margin-bottom: 0; }

        .schedule-month h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .schedule-month h3::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold);
        }

        .schedule-table {
            width: 100%;
            border-collapse: collapse;
        }

        .schedule-table th {
            background: var(--charcoal-medium);
            padding: 1rem 1.5rem;
            text-align: left;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            border-bottom: 2px solid var(--gold);
        }

        .schedule-table td {
            padding: 1.2rem 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            font-size: 0.95rem;
        }

        .schedule-table tr:hover td {
            background: rgba(212,168,85,0.05);
        }

        .status-available {
            color: var(--gold);
            font-weight: 600;
        }

        .status-full {
            color: #e74c3c;
            font-weight: 600;
        }

        /* Form Section */
        .enrollment {
            background: linear-gradient(180deg, var(--charcoal-light) 0%, var(--charcoal) 100%);
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: var(--charcoal);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 4rem;
        }

        .google-form-container {
            max-width: 700px;
            padding: 2rem;
            border-radius: 8px;
            overflow: hidden;
        }

        .google-form-container iframe {
            display: block;
            border-radius: 4px;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-label {
            display: block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 0.8rem;
        }

        .form-input {
            width: 100%;
            background: var(--charcoal-medium);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 16px 20px;
            color: var(--text-light);
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212,168,85,0.1);
        }

        .form-input::placeholder {
            color: var(--text-muted);
        }

        textarea.form-input {
            min-height: 120px;
            resize: vertical;
        }

        .form-submit {
            width: 100%;
            margin-top: 1rem;
        }

        /* Stats Section */
        .stats {
            background: var(--charcoal-medium);
            padding: 5rem 4%;
        }

        .stats-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            text-align: center;
        }

        .stat-item h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 600;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        /* Location Section */
        .location {
            background: var(--charcoal);
        }

        .location-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .location-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .location-content .section-text {
            margin-bottom: 2rem;
        }

        .location-content .btn-primary {
            display: inline-block;
        }

        .location-address {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: var(--charcoal-light);
        }

        .location-address-icon {
            width: 40px;
            height: 40px;
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .location-address p {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin: 0;
        }

        .location-address strong {
            color: var(--text-light);
            display: block;
            margin-bottom: 5px;
        }

        .location-image {
            aspect-ratio: 16/10;
            overflow: hidden;
            position: relative;
        }

        .location-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        .whatsapp-float::before {
            content: 'Chateá con nosotros';
            position: absolute;
            right: 70px;
            background: var(--charcoal);
            color: white;
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover::before {
            opacity: 1;
            visibility: visible;
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
            }

            .whatsapp-float svg {
                width: 28px;
                height: 28px;
            }

            .whatsapp-float::before {
                display: none;
            }
        }

        /* Footer */
        footer {
            background: var(--charcoal);
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 4rem 4% 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--gold);
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s;
        }

        .footer-links a:hover { color: var(--gold); }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            section {
                padding: 5rem 4%;
            }

            .feature-row,
            .pricing-container,
            .location-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .feature-row.reverse .feature-image,
            .feature-row.reverse .feature-content {
                order: unset;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .payment-options {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 4rem 5%;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--charcoal);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                border-top: 1px solid rgba(255,255,255,0.1);
            }

            .nav-links.active { display: flex; }
            .mobile-menu-btn { display: block; }

            .hero { min-height: 600px; }
            .hero h1 { font-size: 2.5rem; }
            .hero-text { font-size: 1rem; }

            .courses-grid { grid-template-columns: 1fr; }

            .course-card {
                padding: 2rem 1.5rem;
            }

            .feature-content h3 {
                font-size: 2rem;
            }

            .feature-content h3 span {
                font-size: 1.4rem;
            }

            .feature-image {
                aspect-ratio: 16/10;
            }

            .feature-image::after {
                transform: translate(10px, 10px);
            }

            .pricing-card {
                padding: 2rem;
            }

            .pricing-current {
                font-size: 3rem;
            }

            .form-container { padding: 2rem; }

            .google-form-container {
                padding: 1rem;
            }

            .google-form-container iframe {
                height: 900px;
            }

            .schedule {
                padding: 3rem 4%;
            }

            .schedule-table { 
                font-size: 0.8rem;
                display: block;
                overflow-x: auto;
            }

            .schedule-table th,
            .schedule-table td { 
                padding: 0.7rem 0.8rem;
                white-space: nowrap;
            }

            .stats-grid { 
                grid-template-columns: 1fr 1fr; 
                gap: 2rem; 
            }

            .stat-item h4 { font-size: 2.5rem; }

            .location-content h3 {
                font-size: 2rem;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 3rem 4%;
            }

            .hero h1 { font-size: 2rem; }
            
            .hero-cta {
                flex-direction: column;
                width: 100%;
            }

            .hero-cta a {
                width: 100%;
                text-align: center;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }

            .stat-item h4 { font-size: 2rem; }

            .course-number {
                font-size: 3rem;
            }

            .countdown-number {
                font-size: 1.8rem;
            }

            .pricing-current {
                font-size: 2.5rem;
            }

            .schedule-month h3 {
                font-size: 1.5rem;
            }

            .schedule-month h3::before {
                width: 20px;
            }

            .payment-option {
                padding: 0.8rem;
            }
        }