        :root {
            --sky-primary: #0ea5e9;
            --sky-dark: #0369a1;
            --sky-light: #e0f2fe;
            --sky-soft: #f0f9ff;
            --sky-accent: #38bdf8;
            --text-dark: #0f172a;
            --text-body: #334155;
            --text-light: #64748b;
            --white: #ffffff;
            --gradient: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 50%, #7dd3fc 100%);
            --shadow: 0 10px 40px -10px rgba(14, 165, 233, 0.2);
            --shadow-lg: 0 25px 50px -12px rgba(14, 165, 233, 0.25);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-body);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

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

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--sky-primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo i {
            color: var(--sky-accent);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-body);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            position: relative;
        }

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

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--sky-primary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background: transparent;
            color: var(--sky-primary);
            border: 2px solid var(--sky-primary);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-outline:hover {
            background: var(--sky-primary);
            color: white;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--sky-soft);
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            color: var(--sky-primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(14, 165, 233, 0.1);
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero h1 span {
            color: var(--sky-primary);
            position: relative;
        }

        .hero p {
            font-size: 1.15rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .hero-stats {
            display: flex;
            gap: 2.5rem;
        }

        .stat-item h3 {
            font-size: 2rem;
            color: var(--sky-primary);
            font-weight: 700;
        }

        .stat-item p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 500px;
        }

        .hero-circle {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, var(--sky-primary), var(--sky-accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 20px 50px rgba(14, 165, 233, 0.3);
            z-index: 2;
        }

        .hero-circle::before {
            content: '';
            position: absolute;
            width: 480px;
            height: 480px;
            border: 2px dashed rgba(14, 165, 233, 0.4);
            border-radius: 50%;
            animation: rotate 25s linear infinite;
            z-index: 1;
        }

        .hero-circle::after {
            content: '';
            position: absolute;
            width: 560px;
            height: 560px;
            border: 1px solid rgba(14, 165, 233, 0.2);
            border-radius: 50%;
            animation: rotate 35s linear infinite reverse;
            z-index: 1;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .hero-icon {
            font-size: 8rem;
            color: white;
            opacity: 0.95;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
            z-index: 3;
            animation: pulse-icon 4s ease-in-out infinite;
        }

        @keyframes pulse-icon {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 0;
            animation: float 6s ease-in-out infinite;
        }

        .glow-orb.orb-1 {
            width: 250px;
            height: 250px;
            background: rgba(14, 165, 233, 0.4);
            top: -20px;
            right: -20px;
            animation-delay: 0s;
        }

        .glow-orb.orb-2 {
            width: 200px;
            height: 200px;
            background: rgba(56, 189, 248, 0.3);
            bottom: -30px;
            left: -10px;
            animation-delay: 2s;
        }

        .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 1.5rem;
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            animation: float 4s ease-in-out infinite;
            z-index: 4;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: transform 0.3s ease;
        }
        
        .floating-card:hover {
            transform: scale(1.05);
            z-index: 5;
        }

        .floating-card.card-1 {
            top: 5%;
            left: -40px;
            animation-delay: 0s;
        }

        .floating-card.card-2 {
            bottom: 8%;
            right: -30px;
            animation-delay: 1.5s;
        }
        
        .floating-card.card-3 {
            top: 15%;
            right: -50px;
            animation-delay: 0.7s;
        }

        .floating-card.card-4 {
            bottom: 18%;
            left: -20px;
            animation-delay: 2.2s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .floating-card i {
            font-size: 1.5rem;
            color: var(--sky-primary);
        }

        .floating-card span {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        /* Features Section */
        .features {
            padding: 6rem 0;
            background: white;
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: var(--sky-soft);
            padding: 2.5rem;
            border-radius: 24px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--sky-accent);
            box-shadow: var(--shadow);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: white;
        }

        .feature-card h3 {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

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

        /* Programs Section */
        .programs {
            padding: 6rem 0;
            background: var(--sky-soft);
        }

        .programs-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .program-card {
            background: white;
            padding: 2.5rem;
            border-radius: 24px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .program-card:hover::before {
            transform: scaleX(1);
        }

        .program-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .program-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .program-card h3 {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

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

        .program-tag {
            display: inline-block;
            background: var(--sky-light);
            color: var(--sky-dark);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 1rem;
        }

        /* Pricing Section */
        .pricing {
            padding: 6rem 0;
            background: white;
        }

        .pricing-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            align-items: start;
        }

        .pricing-card {
            background: white;
            border: 2px solid var(--sky-light);
            border-radius: 24px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .pricing-card:hover {
            border-color: var(--sky-accent);
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .pricing-card.popular {
            border-color: var(--sky-primary);
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient);
            color: white;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .pricing-card h3 {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .pricing-card .subtitle {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--sky-primary);
            margin-bottom: 0.5rem;
        }

        .price span {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 400;
        }

        .pricing-features {
            list-style: none;
            margin: 2rem 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--sky-light);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features i {
            color: var(--sky-primary);
            font-size: 1rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 0;
            background: var(--sky-soft);
        }

        .testimonials-slider-container {
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
            padding: 2rem 0;
        }

        .testimonials-slider-container::before,
        .testimonials-slider-container::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 150px;
            z-index: 2;
            pointer-events: none;
        }

        .testimonials-slider-container::before {
            left: 0;
            background: linear-gradient(to right, var(--sky-soft), transparent);
        }

        .testimonials-slider-container::after {
            right: 0;
            background: linear-gradient(to left, var(--sky-soft), transparent);
        }

        .testimonials-track {
            display: flex;
            width: max-content;
            animation: scroll-left 50s linear infinite;
        }

        .testimonials-track:hover {
            animation-play-state: paused;
        }

        .testimonials-set {
            display: flex;
            gap: 2rem;
            padding-right: 2rem;
        }

        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 24px;
            position: relative;
            width: 380px;
            flex-shrink: 0;
            white-space: normal;
        }

        .testimonial-card::before {
            content: '"';
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            color: var(--sky-light);
            position: absolute;
            top: 10px;
            left: 20px;
            line-height: 1;
        }

        .testimonial-text {
            position: relative;
            z-index: 1;
            color: var(--text-body);
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .author-info h4 {
            color: var(--text-dark);
            font-size: 1rem;
        }

        .author-info p {
            color: var(--text-light);
            font-size: 0.85rem;
        }

        .stars {
            color: #fbbf24;
            margin-bottom: 1rem;
        }

        /* Contact/Registration Section */
        .contact {
            padding: 6rem 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            position: relative;
            z-index: 1;
        }

        .contact-info h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .contact-info>p {
            color: var(--text-light);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

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

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-item i {
            width: 50px;
            height: 50px;
            background: var(--sky-light);
            color: var(--sky-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .contact-item div h4 {
            color: var(--text-dark);
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

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

        .form-container {
            background: var(--sky-soft);
            padding: 3rem;
            border-radius: 24px;
            border: 2px solid var(--sky-light);
        }

        .form-container h3 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .form-container>p {
            color: var(--text-light);
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: var(--text-dark);
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--sky-primary);
            box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .btn-submit {
            width: 100%;
            background: var(--gradient);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .success-message {
            display: none;
            background: #dcfce7;
            color: #166534;
            padding: 1rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 500;
        }

        .error-message {
            display: none;
            background: #fee2e2;
            color: #991b1b;
            padding: 1rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 500;
        }

        /* FAQ Section */
        .faq {
            padding: 6rem 0;
            background: var(--sky-soft);
        }

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

        .faq-item {
            background: white;
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        }

        .faq-question {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--text-dark);
            transition: all 0.3s;
        }

        .faq-question:hover {
            color: var(--sky-primary);
        }

        .faq-question i {
            transition: transform 0.3s;
            color: var(--sky-primary);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

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

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        .faq-answer p {
            padding: 0 1.5rem 1.5rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-brand h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--sky-accent);
        }

        .footer-brand p {
            color: #94a3b8;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

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

        .footer-column h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

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

        .footer-column ul li {
            margin-bottom: 0.75rem;
        }

        .footer-column ul li a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
        }

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

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding: 2rem 2rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #64748b;
            font-size: 0.9rem;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--sky-primary);
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 1024px) {

            .hero-container,
            .contact-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-visual {
                display: none;
            }

            .features-grid,
            .programs-grid,
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

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

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

            .features-grid,
            .programs-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-card {
                width: 300px;
                padding: 1.5rem;
            }

            .pricing-card.popular {
                transform: scale(1);
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .hero-buttons {
                flex-direction: column;
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--sky-soft);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--sky-primary);
            border-radius: 5px;
        }

        /* Noorani Qaida Course Page Styles */
        .page-header {
            padding: 140px 2rem 80px;
            background: var(--sky-soft);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .page-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .page-header h1 span {
            color: var(--sky-primary);
        }

        .page-header p {
            font-size: 1.15rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .course-details {
            padding: 6rem 0;
            background: white;
        }

        .course-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
        }

        .course-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            margin-top: 2rem;
        }

        .course-content h2:first-child {
            margin-top: 0;
        }

        .course-content p {
            color: var(--text-body);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .course-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .course-list li {
            padding: 0.5rem 0 0.5rem 2rem;
            position: relative;
            color: var(--text-body);
            font-size: 1.05rem;
        }

        .course-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--sky-primary);
            position: absolute;
            left: 0;
            top: 0.6rem;
        }

        .sidebar-widget {
            background: var(--sky-soft);
            padding: 2rem;
            border-radius: 24px;
            border: 2px solid var(--sky-light);
            margin-bottom: 2rem;
        }

        .sidebar-widget h3 {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--sky-light);
        }

        .sidebar-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }

        .sidebar-item i {
            color: var(--sky-primary);
            font-size: 1.2rem;
            margin-top: 0.2rem;
        }

        .sidebar-item div h4 {
            color: var(--text-dark);
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .sidebar-item div p {
            color: var(--text-light);
            font-size: 0.9rem;
            margin: 0;
        }

        .enroll-btn {
            width: 100%;
            justify-content: center;
            margin-top: 1rem;
        }

        /* FAQ specific for course page */
        .course-faq {
            margin-top: 4rem;
        }

        .course-faq h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
        }

        @media (max-width: 992px) {
            .course-container {
                grid-template-columns: 1fr;
            }
        }