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

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #8b5cf6;
  --accent: #ec4899;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray: #64748b;
  --light: #f1f5f9;
  --white: #ffffff;
  --success: #10b981;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  font-size: 15px;
}

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

.header {
  background: var(--dark);
  padding: 1rem 0;
  position: relative;
  z-index: 100;
}

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

.logo a {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: var(--light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
}

.mega-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #312e81 100%);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mega-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.2);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid var(--primary);
}

.mega-hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.mega-hero-content > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.mega-hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.image-float-card {
  position: absolute;
  background: var(--white);
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  font-weight: 600;
  font-size: 0.85rem;
}

.image-float-card i {
  color: var(--primary);
  font-size: 1.2rem;
}

.card-1 {
  top: 20px;
  right: -20px;
}

.card-2 {
  bottom: 20px;
  left: -20px;
}

.trust-bar {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.trust-text {
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-logos span {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: var(--gray);
  opacity: 0.5;
  font-size: 1rem;
}

.section-intro {
  margin-bottom: 3rem;
}

.section-intro.centered {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-intro h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.section-intro p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
}

section {
  padding: 4rem 0;
}

.features-modern {
  background: var(--light);
}

.features-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-modern {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon-wrap i {
  font-size: 1.8rem;
  color: var(--white);
}

.feature-modern h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.feature-modern p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.courses-showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.course-showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.course-showcase-card.reverse {
  direction: rtl;
}

.course-showcase-card.reverse > * {
  direction: ltr;
}

.course-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.course-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.course-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.course-showcase-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.course-showcase-content > p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.course-highlights li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.course-highlights i {
  color: var(--success);
  font-size: 1rem;
}

.btn-course {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.btn-course:hover {
  background: var(--primary-dark);
  gap: 0.8rem;
}

.learning-path {
  background: var(--light);
}

.path-timeline {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.path-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  position: relative;
}

.path-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 40px;
  top: 80px;
  width: 2px;
  height: calc(100% + 2rem);
  background: linear-gradient(to bottom, var(--primary), transparent);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

.step-content {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.step-content p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.step-duration {
  display: inline-block;
  background: var(--light);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.instructor-spotlight {
  background: var(--dark);
  color: var(--white);
}

.instructor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.instructor-content .section-label {
  color: var(--primary);
}

.instructor-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.instructor-content > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.instructor-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.instructor-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.instructor-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.instructor-avatar i {
  font-size: 1.5rem;
  color: var(--white);
}

.instructor-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.instructor-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.instructor-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.pricing-modern {
  background: var(--light);
}

.pricing-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-modern-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.pricing-modern-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

.pricing-modern-card.featured {
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-tier {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 0.5rem;
}

.amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.5;
}

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

.pricing-list li {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--dark);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pricing-list i {
  color: var(--success);
  font-size: 1rem;
  margin-top: 0.2rem;
}

.btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--primary);
  padding: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  transition: all 0.3s;
}

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

.btn-pricing.primary {
  background: var(--primary);
  color: var(--white);
}

.btn-pricing.primary:hover {
  background: var(--primary-dark);
}

.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 12px;
}

.testimonial-rating {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-card > p {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.author-avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar i {
  font-size: 1.5rem;
  color: var(--white);
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--gray);
}

.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}

.final-cta-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.final-cta-content > p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--white);
  color: var(--primary);
  padding: 1.2rem 3rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer {
  background: var(--dark);
  color: var(--light);
  padding: 1.5rem 0;
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-copy {
  color: var(--gray);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 1.5rem;
  z-index: 1000;
  display: none;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.privacy-popup.show {
  display: block;
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.privacy-content p {
  font-size: 0.9rem;
  margin: 0;
}

.privacy-actions {
  display: flex;
  gap: 1rem;
}

.btn-accept {
  background: var(--primary);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-accept:hover {
  background: var(--primary-dark);
}

.btn-learn {
  color: var(--white);
  text-decoration: underline;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    background: var(--dark-light);
    flex-direction: column;
    padding: 1rem;
    transition: left 0.3s;
    gap: 1rem;
  }

  .nav.active {
    left: 0;
  }

  .nav-toggle {
    display: block;
  }

  .mega-hero {
    padding: 2rem 0;
  }

  .mega-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mega-hero-content h1 {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .image-float-card {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }

  .card-1,
  .card-2 {
    position: static;
    display: inline-flex;
    margin-top: 1rem;
  }

  .section-intro h2 {
    font-size: 1.8rem;
  }

  .features-modern-grid {
    grid-template-columns: 1fr;
  }

  .course-showcase-card,
  .course-showcase-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .instructor-grid {
    grid-template-columns: 1fr;
  }

  .pricing-modern-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .privacy-content {
    flex-direction: column;
    text-align: center;
  }

  .final-cta-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .logo a {
    font-size: 1.1rem;
  }

  .mega-hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.8rem;
  }

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

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .section-intro h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 2.5rem 0;
  }

  .amount {
    font-size: 2.5rem;
  }

  .btn-cta-large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

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

@media (max-width: 320px) {
  .container {
    padding: 0 0.75rem;
  }

  .mega-hero-content h1 {
    font-size: 1.4rem;
  }

  .section-intro h2 {
    font-size: 1.3rem;
  }

  .feature-modern,
  .pricing-modern-card {
    padding: 1.5rem;
  }
}


.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  padding: 3rem 0;
  text-align: center;
  color: var(--white);
}

.page-hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.page-hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.course-overview {
  padding: 4rem 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.overview-text h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.overview-text p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.course-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 600;
}

.stat-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

.overview-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.curriculum {
  background: var(--light);
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.section-header p {
  color: var(--gray);
  font-size: 1rem;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.curriculum-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  padding-left: 5rem;
}

.curriculum-number {
  position: absolute;
  left: 2rem;
  top: 2rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.3;
}

.curriculum-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.curriculum-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.course-benefits {
  padding: 4rem 0;
}

.benefits-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

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

.benefit-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.skills-section {
  background: var(--light);
  padding: 4rem 0;
}

.skills-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-align: center;
  color: var(--dark);
}

.skills-content > p {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.skill-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.skill-card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.skill-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.skill-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.contact-info > p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.info-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--dark);
}

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

.contact-form-wrapper {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 12px;
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--dark);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--gray);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.map-section {
  padding: 4rem 0;
  background: var(--light);
}

.map-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--dark);
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-section,
.error-section {
  min-height: calc(100vh - 170px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 600px;
}

.thankyou-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 2rem;
}

.thankyou-content h1,
.error-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.thankyou-content p,
.error-content p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  transition: all 0.3s;
  cursor: pointer;
}

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

.error-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 2rem;
}

.policy-section {
  padding: 4rem 0;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.policy-date {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.policy-content h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.policy-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.policy-content p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.policy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-content li {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .overview-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .overview-grid .overview-image {
    order: -1;
  }

  .course-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .curriculum-grid,
  .benefits-grid,
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .thankyou-actions,
  .error-actions {
    flex-direction: column;
  }

  .error-number {
    font-size: 4rem;
  }
}

@media (max-width: 480px) {
  .page-hero-content h1 {
    font-size: 1.8rem;
  }

  .overview-text h2,
  .skills-content h2,
  .benefits-content h2,
  .contact-info h2,
  .map-section h2 {
    font-size: 1.6rem;
  }

  .thankyou-content h1,
  .error-content h1 {
    font-size: 1.6rem;
  }

  .policy-content h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 320px) {
  .page-hero-content h1 {
    font-size: 1.5rem;
  }

  .curriculum-card,
  .skill-card,
  .benefit-item {
    padding: 1.5rem;
  }
}
