:root {
  --primary: #6366f1; /* Indigo 500 */
  --primary-dark: #4f46e5; /* Indigo 600 */
  --secondary: #ec4899; /* Pink 500 */
  --accent: #8b5cf6; /* Violet 500 */
  --warning: #f59e0b; /* Amber 500 */
  --success: #10b981; /* Emerald 500 */
  --danger: #ef4444; /* Red 500 */
  --dark-bg: #0f172a; /* Slate 900 */
  --dark-card: #1e293b; /* Slate 800 */
  --light-text: #f8fafc; /* Slate 50 */
  --gray-text: #94a3b8; /* Slate 400 */
  --font-main: 'Inter', sans-serif;
  --gradient-main: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --glass-bg: rgba(30, 41, 59, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
}

/* Section Common */
.section {
  padding: 5rem 0;
}

.bg-dark {
  background-color: var(--dark-bg);
}

.bg-card {
  background-color: #0b0f19;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--gray-text);
  margin-bottom: 3.5rem;
  font-size: 1.125rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  gap: 8px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: 10px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Navbar */
.navbar {
  background: var(--dark-card);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo img {
  height: 48px;
  width: auto;
}

.logo-subtext {
  display: flex;
  flex-direction: column;
}

.powered-by {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.5px;
}

.parent-brand {
  font-size: 0.8rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.desktop-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--light-text);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.desktop-menu a:hover, .desktop-menu a.active-link {
  color: var(--secondary);
}

.btn-nav {
  padding: 8px 18px;
  font-size: 0.9rem;
}

/* Language Selector Dropdown */
.lang-selector-wrapper {
  position: relative;
}

.lang-selector-btn {
  background: transparent;
  color: var(--light-text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-selector-btn:hover {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  width: 140px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1002;
}

.lang-dropdown.show {
  display: block;
}

.lang-dropdown li a {
  display: block;
  padding: 8px 16px;
  font-size: 0.875rem;
  color: var(--light-text);
  border: none;
}

.lang-dropdown li a:hover, .lang-dropdown li a.active-lang {
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary);
}

/* Mobile Nav Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.mobile-menu-toggle .bar {
  height: 2px;
  width: 100%;
  background-color: var(--light-text);
  transition: all 0.3s ease;
}

.mobile-dropdown {
  display: none;
  background: var(--dark-card);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-direction: column;
  gap: 1rem;
}

.mobile-dropdown.show {
  display: flex;
}

.mobile-dropdown a {
  padding: 8px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown a.active-link {
  color: var(--secondary);
}

.mobile-lang-selector {
  margin-top: 0.5rem;
  padding: 8px 0;
}

.mobile-lang-title {
  font-size: 0.9rem;
  color: var(--gray-text);
  display: block;
  margin-bottom: 0.5rem;
}

.mobile-lang-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-lang-options a {
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
}

.mobile-lang-options a.active-lang-option {
  border-color: var(--primary);
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 8rem 0 6rem 0;
  overflow: hidden;
  background: radial-gradient(ellipse at bottom, #111827, #030712);
  text-align: center;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
}

.hero-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(99, 102, 241, 0.15);
  top: -100px;
  left: 20%;
}

.hero-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(236, 72, 153, 0.1);
  bottom: -50px;
  right: 15%;
}

.hero-glow-3 {
  width: 500px;
  height: 500px;
  background: rgba(139, 92, 246, 0.08);
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.badge-live {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-text);
  max-width: 800px;
  margin: 0 auto 3rem auto;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 1rem 2rem;
  flex-wrap: wrap;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--light-text);
}

/* Cards & Generic Styles */
.card {
  background: var(--dark-card);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

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

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card-desc {
  color: var(--gray-text);
  font-size: 0.95rem;
}

/* Course Catalog Cards */
.course-card {
  background: var(--dark-card);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.course-card-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.badge-accent {
  background: rgba(139, 92, 246, 0.15);
  color: #c084fc;
  border: 1px solid rgba(139, 92, 246, 0.3);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

.course-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 1rem;
}

.course-card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-card-desc {
  color: var(--gray-text);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.course-meta span {
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.course-pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.price-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-align: center;
}

.price-tag-highlight {
  border-color: var(--primary);
  background: rgba(99, 102, 241, 0.05);
}

.price-label {
  font-size: 0.75rem;
  color: var(--gray-text);
  font-weight: 600;
  margin-bottom: 4px;
}

.price-amount {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.course-card-footer {
  padding: 0 2rem 2rem 2rem;
}

/* Pricing Grid */
.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  background: var(--dark-card);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card-popular {
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  transform: translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: white;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.pricing-card-header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pricing-card-desc {
  color: var(--gray-text);
  font-size: 0.9rem;
}

.pricing-card-body {
  padding-top: 2rem;
  flex-grow: 1;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-item {
  background: var(--dark-card);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-main);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.step-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-item p {
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* Enrollment Form Section */
.enroll-form-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 3.5rem;
  border-radius: 24px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--light-text);
}

.form-group input, .form-group select, .form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-group select option {
  background-color: #1e293b;
  color: #f1f5f9;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.form-group input.invalid, .form-group select.invalid, .form-group textarea.invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error {
  font-size: 0.8rem;
  color: var(--danger);
  margin-top: 4px;
}

.selected-price-display {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34d399;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 8px;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem;
  text-align: left;
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-arrow {
  font-size: 0.8rem;
  color: var(--gray-text);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background: rgba(255, 255, 255, 0.01);
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Stats / Trust section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: var(--dark-card);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--gray-text);
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: var(--dark-card);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo img {
  height: 52px;
  width: auto;
  margin-bottom: 8px;
}

.footer-desc {
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

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

.social-links a {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.social-links a.social-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--gray-text);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--gray-text);
}

.contact-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item a:hover {
  color: var(--secondary);
}

.footer-entity {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.footer-entity p {
  color: var(--gray-text);
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.6;
}

.footer-authority {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  padding-bottom: 1rem;
  text-align: center;
}

.authority-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  font-size: 0.75rem;
  color: var(--gray-text);
}

.authority-links a:hover {
  color: var(--secondary);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray-text);
  flex-wrap: wrap;
  gap: 1rem;
}

.policy-links {
  display: flex;
  gap: 1.5rem;
}

.policy-links a:hover {
  color: var(--secondary);
}

/* Floating WhatsApp */
.whatsapp-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-floating:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

.whatsapp-floating-icon {
  font-size: 1.75rem;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Alert Boxes */
.alert {
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  border: 1px solid transparent;
}

.alert-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.2);
}

.alert-danger {
  background-color: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.2);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card-popular {
    transform: none;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .navbar-container {
    position: relative;
  }
  
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .enroll-form-wrapper {
    padding: 2rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-copyright {
    flex-direction: column;
    text-align: center;
  }
}
