        :root {
            --primary: #1a59ff;
            --primary-dark: #6D28D9;
            --primary-light: #8B5CF6;
            --secondary: #F59E0B;
            --dark: #1F2937;
            --light: #F9FAFB;
            --gray: #6B7280;
            --gray-light: #E5E7EB;
            --success: #10B981;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #ffffff;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            line-height: 1.2;
        }
        
        a {
            text-decoration: none;
        }
        
        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-family: 'Inter', sans-serif;
            font-weight: 900;
            font-size: 28px;
            color: var(--primary);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark);
            cursor: pointer;
        }
        
        /* Hero Section - Made Fully Responsive */
        .hero {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
            top: -100px;
            right: -100px;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(245, 158, 11, 0.08) 100%);
            bottom: -50px;
            left: -50px;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-text h1 {
            font-size: clamp(32px, 5vw, 52px);
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .hero-text h1 span {
            color: var(--primary);
        }
        
        .hero-text p {
            font-size: clamp(16px, 2.5vw, 18px);
            color: var(--gray);
            margin-bottom: 30px;
        }
        
        .highlight-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            border-left: 5px solid var(--secondary);
        }
        
        .price-tag {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }
        
        .current-price {
            font-size: clamp(36px, 6vw, 48px);
            font-weight: 900;
            color: var(--primary);
        }
        
        .original-price {
            font-size: clamp(18px, 3vw, 24px);
            color: var(--gray);
            text-decoration: line-through;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: clamp(14px, 3vw, 16px) clamp(30px, 5vw, 40px);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(16px, 2.5vw, 18px);
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            text-align: center;
        }
        
        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
        }
        
        .btn-secondary:hover {
            background-color: #D97706;
            box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
        }
        
        /* Countdown Timer */
        .countdown {
            display: flex;
            gap: 15px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .countdown-item {
            background-color: white;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            min-width: 80px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            flex: 1;
            min-width: 70px;
            max-width: 100px;
        }
        
        .countdown-number {
            font-size: clamp(24px, 4vw, 32px);
            font-weight: 900;
            color: var(--primary);
            display: block;
            line-height: 1;
        }
        
        .countdown-label {
            font-size: clamp(12px, 2vw, 14px);
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Workshop Form */
        .workshop-form {
            background-color: white;
            border-radius: 15px;
            max-width: 440px;
            padding: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            width: 100%;
            margin: 0 auto;
        }
        
        .imgtop {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }

        .form-title {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .form-title h3 {
            font-size: clamp(24px, 4vw, 28px);
            color: var(--dark);
            margin-bottom: 10px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--gray-light);
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            transition: border 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        /* Program Section */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            margin-top: 40px;
        }
        
        .section-title h2 {
            font-size: clamp(32px, 5vw, 42px);
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--gray);
            font-size: clamp(16px, 2.5vw, 18px);
        }
        
        .program-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }
        
        .program-day {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid var(--primary);
        }
        
        .program-day:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .day-number {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 20px;
        }
        
        .program-day h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        /* Features */
        .features {
            background-color: transparent;
            padding: 100px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .feature-item {
            text-align: center;
            padding: 30px 20px;
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(124, 58, 237, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary);
            font-size: 28px;
        }
        
        /* Testimonials */
        .testimonials {
            background-color: var(--light);
            padding: 60px;
        }
        
        .testimonial-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }
        
        .testimonial-content:before {
            content: '"';
            font-size: 60px;
            color: #4fc3f7;
            position: absolute;
            left: -10px;
            top: -20px;
            opacity: 0.3;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #e0e0e0;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #1a237e;
            font-weight: bold;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
        }
        
        .linkedin-icon {
            color: #0077b5;
            font-size: 20px;
            margin-left: auto;
        }

        /* Mentor Section */
        .mentor-section {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .mentor-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .mentor-image {
            text-align: center;
        }
        
        .mentor-img {
            width: 100%;
            max-width: 600px;
            max-height: 600px;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .mentor-info h2 {
            font-size: clamp(28px, 4vw, 36px);
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .mentor-info h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .mentor-info p {
            margin-bottom: 25px;
            color: var(--gray);
            font-size: 17px;
        }

        .mentor-info li {
            margin-bottom: 25px;
            color: var(--gray);
            font-size: 17px;
        }

        .mentor-info ul {
            padding-left: 5%;
        }
        
        .mentor-social {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .mentor-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            font-size: 20px;
            transition: all 0.3s;
        }
        
        .mentor-social a:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        .mentor-social a.linkedin {
            background-color: #0077B5;
        }
        
        .mentor-social a.linkedin:hover {
            background-color: #005582;
        }
        
        .mentor-social a.twitter {
            background-color: #1DA1F2;
        }
        
        .mentor-social a.twitter:hover {
            background-color: #0d8bd9;
        }
        
        .mentor-social a.whatsapp {
            background-color: #25D366;
        }
        
        .mentor-social a.whatsapp:hover {
            background-color: #0c913c;
        }

        .mentor-social a.instagram {
            background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
        }
        
        .mentor-social a.instagram:hover {
            opacity: 0.9;
        }
        
        /* FAQ */
        .faq {
            background-color: var(--gray-light);
            padding: 60px 0;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: white;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        }
        
        .faq-question {
            padding: 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
        }
        
        .faq-question i {
            transition: transform 0.3s;
            color: var(--primary);
        }
        
        .faq-answer {
            padding: 0 10px;
            max-height: 0;
            overflow: hidden;
            margin-bottom: 15px;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 25px 25px 25px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* CTA Sections */
        .cta-section {
            text-align: center;
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .cta-section h3 {
            font-size: clamp(28px, 4vw, 36px);
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 18px;
            color: var(--gray);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            font-family: 'Inter', sans-serif;
            font-weight: 900;
            font-size: 28px;
            color: white;
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: var(--secondary);
        }
        
        .footer-links h4 {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            color: #D1D5DB;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 35px;
            height: 35px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: background-color 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #9CA3AF;
            font-size: 14px;
        }

        .mobile-nav {
            display: none;
        }
        
        .testimonial-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding-top: 30px;
            flex-wrap: wrap;
        }
        

        /* Responsive Hero Section */
        @media (max-width: 1200px) {
            .hero-content {
                gap: 40px;
            }
        }
        
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }

                        .mobile-menu-btn {
                display: block;
            }
            
            .mobile-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: white;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px;
                display: none;
                z-index: 999;
            }
            
            .mobile-nav.active {
                display: block;
            }
            
            .mobile-nav ul {
                list-style: none;
            }
            
            .mobile-nav ul li {
                margin-bottom: 15px;
            }
            
            .mobile-nav ul li a {
                text-decoration: none;
                color: var(--dark);
                font-weight: 500;
                font-size: 18px;
                display: block;
                padding: 3px 0;
            }
            
            .mobile-nav a:hover {
                background-color: var(--gray-light);
                padding: 5px;
            }
            
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-text {
                text-align: center;
                 order: 2;
            }
            

            .highlight-box {
                text-align: center;
            }
            
            .price-tag {
                justify-content: center;
            }
            
            .countdown {
                justify-content: center;
            }
            
            .mentor-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .mentor-image {
                order: 1;
            }
            
            .mentor-info {
                order: 2;
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 140px 0 60px;
            }
            

            .section-title h2 {
                font-size: 36px;
            }
            
            .workshop-form {
                padding: 10px;
            }
            
            .testimonial-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .testimonial-buttons .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .testimonials {
                padding: 40px 20px;
            }
            
            .testimonial-cards {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 120px 0 40px;
            }
            
            .hero-text h1 {
                font-size: 28px;
                margin-bottom: 15px;
            }
            
            .hero-text p {
                font-size: 16px;
                margin-bottom: 20px;
            }
            
            .highlight-box {
                padding: 15px;
                margin-bottom: 20px;
            }
            
            .current-price {
                font-size: 36px;
            }
            
            .original-price {
                font-size: 20px;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
                display: block;
            }
            
            .countdown {
                gap: 10px;
                margin: 20px 0;
            }
            
            .countdown-item {
                min-width: 60px;
                padding: 10px;
            }
            
            .countdown-number {
                font-size: 24px;
            }
            
            .countdown-label {
                font-size: 12px;
            }
            
            .workshop-form {
                padding: 5px;
            }
            
            .program-container {
                grid-template-columns: 1fr;
            }
            
            .mentor-social {
                justify-content: center;
            }
        }
        
        @media (max-width: 400px) {
            .hero {
                padding: 110px 0 30px;
            }
            
            .hero-text h1 {
                font-size: 24px;
            }
            
            .current-price {
                font-size: 32px;
            }
            
            .original-price {
                font-size: 18px;
            }
            
            .countdown-item {
                min-width: 50px;
                padding: 8px;
            }
            
            .countdown-number {
                font-size: 20px;
            }
            
            .logo {
                font-size: 24px;
            }
        }










        
        /* Policy Styling */
        .policy-content {
            padding: 160px 0 100px;
        }
        
        .policy-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .policy-header h1 {
            font-size: 42px;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .policy-header p {
            color: var(--gray);
            font-size: 18px;
        }
        
        .policy-section {
            margin-bottom: 50px;
        }
        
        .policy-section h2 {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--gray-light);
        }
        
        .policy-section h3 {
            font-size: 20px;
            color: var(--dark);
            margin: 25px 0 15px;
        }
        
        .policy-section p {
            margin-bottom: 15px;
            color: var(--gray);
        }
        
        .policy-section ul {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        
        .policy-section li {
            margin-bottom: 10px;
            color: var(--gray);
        }
        
        .policy-section table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .policy-section table th,
        .policy-section table td {
            padding: 12px;
            text-align: left;
            border: 1px solid var(--gray-light);
        }
        
        .policy-section table th {
            background-color: var(--light);
            font-weight: 600;
        }
        
        .last-updated {
            background-color: var(--light);
            padding: 30px;
            border-radius: 10px;
            margin-top: 60px;
            text-align: center;
        }
        
        .last-updated h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }

         

        /* Terms Styling */
        .terms-content {
            padding: 160px 0 100px;
        }
        
        .terms-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .terms-header h1 {
            font-size: 42px;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .terms-header p {
            color: var(--gray);
            font-size: 18px;
        }
        
        .terms-section {
            margin-bottom: 50px;
        }
        
        .terms-section h2 {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--gray-light);
        }
        
        .terms-section h3 {
            font-size: 20px;
            color: var(--dark);
            margin: 25px 0 15px;
        }
        
        .terms-section p {
            margin-bottom: 15px;
            color: var(--gray);
        }
        
        .terms-section ul {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        
        .terms-section li {
            margin-bottom: 10px;
            color: var(--gray);
        }
        
        .terms-section ol {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        
        .important-note {
            background-color: #FFF3CD;
            border-left: 4px solid var(--secondary);
            padding: 20px;
            margin: 30px 0;
            border-radius: 5px;
        }
        
        .important-note h4 {
            color: #856404;
            margin-bottom: 10px;
        }
        
        .important-note p {
            color: #856404;
        }
        
        .definitions {
            background-color: var(--light);
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
        }
        
        .definitions dt {
            font-weight: 600;
            color: var(--primary);
            margin-top: 15px;
        }
        
        .definitions dd {
            margin-left: 20px;
            margin-bottom: 15px;
            color: var(--gray);
        }
