
        :root {
            --primary: #00c3ff;
            --primary-dark: #007bff;
            --secondary: #7a42f4;
            --accent: #00d9ff;
            --dark: #0c0f1d;
            --darker: #080a14;
            --light: #f8f9fa;
            --gray: #8c93a3;
            --light-gray: #1e2130;
            --success: #00e676;
            --warning: #ffc107;
            --border-radius: 8px;
            --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: rgba(12, 15, 29, 0.9);
            box-shadow: 0 2px 15px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 195, 255, 0.1);
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 12px;
        }
        
        .logo i {
            font-size: 32px;
            color: var(--primary);
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .logo h1 {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--light);
            font-weight: 500;
            transition: var(--transition);
            font-size: 17px;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
            border-radius: 2px;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-buttons {
            display: flex;
            gap: 15px;
        }
        
        /* Hero Section */
        .hero {
            padding: 120px 0 100px;
            background: linear-gradient(135deg, #0c0f1d, #1a1f3a);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(0, 195, 255, 0.1) 0%, transparent 70%);
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--light), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 35px;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            justify-content: center;
        }
        
        .hero-cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 60px;
            flex-wrap: wrap;
        }
        
        .hero-card {
            background: rgba(30, 33, 48, 0.6);
            border: 1px solid rgba(0, 195, 255, 0.2);
            border-radius: var(--border-radius);
            padding: 30px;
            width: 280px;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }
        
        .hero-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 195, 255, 0.2);
            border-color: rgba(0, 195, 255, 0.4);
        }
        
        .hero-card i {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--light);
        }
        
        .hero-card p {
            font-size: 16px;
            color: var(--gray);
            margin: 0;
        }
        
        /* Stats Section */
        .stats {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--darker), var(--dark));
            position: relative;
        }
        
        .stats::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom right, transparent 49%, var(--darker) 50%);
        }
        
        .stats-container {
            display: flex;
            justify-content: space-around;
            text-align: center;
            flex-wrap: wrap;
        }
        
        .stat-item {
            padding: 15px;
            min-width: 200px;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 18px;
            color: var(--gray);
            font-weight: 500;
        }
        
        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 40px;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--light), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            font-size: 19px;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            margin: 20px auto 0;
            border-radius: 2px;
        }
        
        /* Videos Section */
        .videos {
            padding: 100px 0;
            background: linear-gradient(135deg, #080a14, #0c0f1d);
            position: relative;
        }
        
        .videos::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom right, transparent 49%, #080a14 50%);
        }
        
        .videos-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .video-card {
            background: var(--light-gray);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 195, 255, 0.1);
            position: relative;
        }
        
        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 195, 255, 0.2);
            border-color: rgba(0, 195, 255, 0.3);
        }
        
        .video-player {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            background: #000;
        }
        
        .video-player iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .video-info {
            padding: 25px;
        }
        
        .video-info h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--light);
        }
        
        .video-info p {
            color: var(--gray);
            font-size: 16px;
        }
        
        /* Courses Section */
        .section {
            padding: 100px 0;
        }
        
        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .course-card {
            background: var(--light-gray);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 195, 255, 0.1);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 195, 255, 0.2);
            border-color: rgba(0, 195, 255, 0.3);
        }
        
        .course-header {
            padding: 25px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .course-header::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .course-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: white;
        }
        
        .course-header h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .course-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .course-content p {
            color: var(--gray);
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        .course-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 15px;
            margin-bottom: 20px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .course-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        /* Metodología Section */
        .methodology {
            padding: 100px 0;
            background: linear-gradient(135deg, #080a14, #0c0f1d);
            position: relative;
            overflow: hidden;
        }
        
        .methodology::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom right, transparent 49%, #080a14 50%);
        }
        
        .methodology::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top left, transparent 49%, #080a14 50%);
        }
        
        .steps-container {
            display: flex;
            justify-content: space-between;
            max-width: 1000px;
            margin: 60px auto 0;
            position: relative;
            flex-wrap: wrap;
        }
        
        .steps-container::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            z-index: 1;
        }
        
        .step {
            position: relative;
            z-index: 2;
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 0 15px;
            margin-bottom: 60px;
        }
        
        .step-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: white;
            box-shadow: 0 5px 20px rgba(0, 195, 255, 0.3);
            transition: var(--transition);
        }
        
        .step:hover .step-icon {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 195, 255, 0.4);
        }
        
        .step h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--light);
            background: linear-gradient(135deg, var(--primary), var(--light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .step p {
            color: var(--gray);
            max-width: 250px;
            margin: 0 auto;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #080a14, #0c0f1d);
            position: relative;
        }
        
        .testimonials-section::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom right, transparent 49%, #080a14 50%);
        }
        
        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .testimonial-card {
            background: var(--light-gray);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 195, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 195, 255, 0.2);
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 100px;
            color: rgba(0, 195, 255, 0.1);
            font-family: serif;
            line-height: 1;
            z-index: 0;
        }
        
        .testimonial-content {
            position: relative;
            z-index: 1;
        }
        
        .testimonial-rating {
            color: var(--warning);
            font-size: 20px;
            margin-bottom: 20px;
        }
        
        .testimonial-text {
            font-size: 17px;
            margin-bottom: 25px;
            color: var(--light);
            line-height: 1.8;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-initials {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 24px;
            flex-shrink: 0;
        }
        
        .author-info h4 {
            font-size: 18px;
            color: var(--light);
        }
        
        .author-info p {
            color: var(--gray);
            font-size: 16px;
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, #0c0f1d, #1a1f3a);
            position: relative;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom right, transparent 49%, #0c0f1d 50%);
        }
        
        .contact-container {
            display: flex;
            gap: 50px;
            max-width: 1000px;
            margin: 0 auto;
            align-items: center;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h2 {
            font-size: 36px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--light), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .contact-info p {
            color: var(--gray);
            margin-bottom: 30px;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
        }
        
        .contact-details h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--light);
        }
        
        .contact-details a, .contact-details p {
            color: var(--gray);
            text-decoration: none;
            font-size: 18px;
            transition: var(--transition);
        }
        
        .contact-details a:hover {
            color: var(--primary);
        }
        
        .map-container {
            flex: 1;
            height: 400px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            border: 1px solid rgba(0, 195, 255, 0.2);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* CTA */
        .cta {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="rgba(255,255,255,0.1)" points="0,0 100,100 0,100"/></svg>');
            background-size: 100% 100%;
            opacity: 0.2;
        }
        
        .cta h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        /* Footer */
        footer {
            background: var(--darker);
            color: white;
            padding: 80px 0 30px;
            position: relative;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: var(--primary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: var(--transition);
            font-size: 16px;
            display: block;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--light-gray);
            color: var(--light);
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 15px;
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 16px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            font-size: 17px;
            border: none;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            box-shadow: 0 4px 15px rgba(0, 195, 255, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(0, 195, 255, 0.4);
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }
        
        .btn-light {
            background: white;
            color: var(--dark);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            font-weight: 700;
        }
        
        .btn-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
            background: #f0f0f0;
        }
        
        .btn-whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }
        
        .btn-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(37, 211, 102, 0.4);
        }
        
        /* Nosotros Section */
        .about-us {
            padding: 100px 0;
            background: linear-gradient(135deg, #0c0f1d, #1a1f3a);
            position: relative;
            overflow: hidden;
        }
        
        .about-us::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom right, transparent 49%, #0c0f1d 50%);
        }
        
        .about-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .about-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .about-header h2 {
            font-size: 40px;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--light), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .about-header p {
            font-size: 22px;
            color: var(--primary);
            font-weight: 600;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-text {
            background: rgba(30, 33, 48, 0.6);
            border: 1px solid rgba(0, 195, 255, 0.2);
            border-radius: var(--border-radius);
            padding: 40px;
            margin-bottom: 50px;
            backdrop-filter: blur(10px);
            box-shadow: var(--box-shadow);
            position: relative;
            overflow: hidden;
        }
        
        .about-text::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="rgba(0,195,255,0.05)" points="0,0 100,100 0,100"/></svg>');
            background-size: 100% 100%;
            opacity: 0.3;
            z-index: -1;
        }
        
        .about-text p {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--light);
            line-height: 1.8;
        }
        
        .about-text p:last-child {
            margin-bottom: 0;
        }
        
        .about-highlight {
            color: var(--primary);
            font-weight: 600;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .about-feature {
            background: rgba(30, 33, 48, 0.6);
            border: 1px solid rgba(0, 195, 255, 0.2);
            border-radius: var(--border-radius);
            padding: 30px;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }
        
        .about-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 195, 255, 0.2);
            border-color: rgba(0, 195, 255, 0.4);
        }
        
        .about-feature h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--light);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .about-feature h3 i {
            color: var(--primary);
            font-size: 28px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .about-feature ul {
            list-style: none;
            padding-left: 20px;
        }
        
        .about-feature li {
            margin-bottom: 15px;
            color: var(--light);
            position: relative;
            padding-left: 30px;
        }
        
        .about-feature li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 24px;
            line-height: 1;
        }
        
        .about-beliefs {
            background: rgba(30, 33, 48, 0.6);
            border: 1px solid rgba(0, 195, 255, 0.2);
            border-radius: var(--border-radius);
            padding: 40px;
            backdrop-filter: blur(10px);
            box-shadow: var(--box-shadow);
            text-align: center;
            position: relative;
        }
        
        .about-beliefs h3 {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--light);
            background: linear-gradient(135deg, var(--primary), var(--light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .about-beliefs p {
            font-size: 22px;
            color: var(--light);
            font-style: italic;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            position: relative;
            padding: 20px;
        }
        
        .about-beliefs p::before,
        .about-beliefs p::after {
            content: '"';
            position: absolute;
            font-size: 80px;
            color: rgba(0, 195, 255, 0.2);
            font-family: serif;
            line-height: 1;
        }
        
        .about-beliefs p::before {
            top: -20px;
            left: -10px;
        }
        
        .about-beliefs p::after {
            bottom: -50px;
            right: -10px;
            transform: rotate(180deg);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-content {
                padding: 0 20px;
            }
            
            .hero-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .stats-container {
                flex-wrap: wrap;
            }
            
            .stat-item {
                flex: 1;
                min-width: 200px;
            }
            
            .contact-container {
                flex-direction: column;
            }
            
            .map-container {
                width: 100%;
            }
            
            .steps-container::before {
                display: none;
            }
            
            .step {
                flex: 0 0 50%;
                margin-bottom: 40px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .section-title p {
                font-size: 17px;
            }
            
            .stat-number {
                font-size: 36px;
            }
            
            .course-card, .video-card {
                max-width: 100%;
                margin: 0 auto;
                width: 100%;
                max-width: 400px;
                margin-bottom: 30px;
            }
            
            .testimonial-card {
                max-width: 500px;
                margin: 0 auto;
            }
            
            .step {
                flex: 0 0 100%;
                margin-bottom: 50px;
            }
            
            .about-header h2 {
                font-size: 32px;
            }
            
            .about-header p {
                font-size: 18px;
            }
            
            .about-text {
                padding: 25px;
            }
            
            .about-feature {
                padding: 25px;
            }
            
            .about-beliefs {
                padding: 25px;
            }
            
            .about-beliefs p {
                font-size: 18px;
            }
        }
    