/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1A1A2E;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1A1A2E;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 32px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
}

a {
  color: #2D5BFF;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

a:hover {
  color: #1A3399;
  transform: translateY(-2px);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Header */
header {
  background: #1A1A2E;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

header img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #FFB800;
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: #FFB800;
  transform: translateY(-2px);
}

.header-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: #FFB800;
  color: #1A1A2E;
  border: none;
  font-size: 32px;
  font-weight: 900;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #FFC933;
  transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #1A1A2E;
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FFB800;
  color: #1A1A2E;
  border: none;
  font-size: 32px;
  font-weight: 900;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #FFC933;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #FFB800;
  padding-left: 12px;
  border-bottom-color: #FFB800;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: #FFB800;
  color: #1A1A2E;
  border-color: #FFB800;
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

.btn-primary:hover {
  background: #FFC933;
  border-color: #FFC933;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 184, 0, 0.4);
  color: #1A1A2E;
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: #1A1A2E;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Sections */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2D5BFF 0%, #1A3399 100%);
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 184, 0, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-badges span {
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

/* Benefits Section */
.benefits {
  background: #F8F9FA;
  padding: 80px 20px;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1A1A2E;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.benefit-card {
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 12px;
  flex: 1 1 calc(25% - 32px);
  min-width: 250px;
  max-width: 280px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 5px solid #FFB800;
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(45, 91, 255, 0.15);
  border-top-color: #2D5BFF;
}

.benefit-card h3 {
  color: #2D5BFF;
  margin-bottom: 16px;
  font-size: 20px;
}

.benefit-card p {
  color: #1A1A2E;
  font-size: 15px;
  line-height: 1.7;
}

/* Services/Courses Grid */
.services,
.course-grid {
  padding: 80px 20px;
  background: #FFFFFF;
}

.services h2,
.course-grid h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services > .container > p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 48px;
  color: #666;
  font-weight: 600;
}

.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.course-card {
  background: #FFFFFF;
  border: 3px solid #1A1A2E;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 360px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.course-card:hover {
  transform: translateY(-8px);
  border-color: #2D5BFF;
  box-shadow: 0 12px 32px rgba(45, 91, 255, 0.2);
}

.course-card h3 {
  color: #1A1A2E;
  margin-bottom: 16px;
  font-size: 22px;
}

.course-card p {
  color: #333;
  margin-bottom: 12px;
  font-size: 15px;
}

.course-card .price {
  color: #2D5BFF;
  font-weight: 800;
  font-size: 28px;
  font-family: 'Montserrat', sans-serif;
  margin: 16px 0;
}

.course-card .duration {
  color: #666;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Process/Steps Section */
.process {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D5BFF 100%);
  color: #FFFFFF;
  padding: 80px 20px;
}

.process h2 {
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 48px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 2px solid rgba(255, 184, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  background: rgba(255, 184, 0, 0.15);
  border-color: #FFB800;
  transform: translateY(-8px);
}

.step h3 {
  color: #FFB800;
  margin-bottom: 16px;
  font-size: 24px;
}

.step p {
  color: #FFFFFF;
  font-size: 15px;
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
  background: #F8F9FA;
  padding: 80px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #FFB800;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #1A1A2E;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card .author {
  color: #2D5BFF;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-style: normal;
  margin-top: 20px;
}

.testimonial-card .result {
  color: #666;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
  font-style: normal;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, #2D5BFF 0%, #1A3399 100%);
  color: #FFFFFF;
  padding: 80px 20px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  align-items: center;
}

.stat {
  text-align: center;
  flex: 1 1 calc(25% - 48px);
  min-width: 200px;
}

.stat h3 {
  color: #FFB800;
  font-size: 56px;
  margin-bottom: 12px;
  font-weight: 900;
}

.stat p {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Banner */
.cta-banner {
  background: #FFB800;
  padding: 80px 20px;
  text-align: center;
}

.cta-banner h2 {
  color: #1A1A2E;
  margin-bottom: 24px;
  font-size: 36px;
}

.cta-banner p {
  color: #1A1A2E;
  font-size: 18px;
  margin-bottom: 32px;
  font-weight: 600;
}

.cta-banner .btn-primary {
  background: #1A1A2E;
  color: #FFB800;
  border-color: #1A1A2E;
}

.cta-banner .btn-primary:hover {
  background: #2D5BFF;
  border-color: #2D5BFF;
  color: #FFFFFF;
}

.cta-banner .btn-secondary {
  background: transparent;
  color: #1A1A2E;
  border-color: #1A1A2E;
}

.cta-banner .btn-secondary:hover {
  background: #1A1A2E;
  color: #FFB800;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D5BFF 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-header h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
}

/* Error 404 Page */
.error-hero {
  background: linear-gradient(135deg, #2D5BFF 0%, #1A3399 100%);
  color: #FFFFFF;
  padding: 120px 20px;
  text-align: center;
}

.error-content h1 {
  color: #FFB800;
  font-size: 120px;
  margin-bottom: 24px;
  font-weight: 900;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.error-content h2 {
  color: #FFFFFF;
  font-size: 32px;
  margin-bottom: 16px;
}

.error-content p {
  font-size: 18px;
  font-weight: 600;
}

/* Popular Links */
.popular-links {
  padding: 60px 20px;
  background: #F8F9FA;
}

.popular-links h2 {
  text-align: center;
  margin-bottom: 40px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.link-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  border: 3px solid #1A1A2E;
  transition: all 0.3s ease;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1A1A2E;
}

.link-card:hover {
  background: #2D5BFF;
  border-color: #2D5BFF;
  color: #FFFFFF;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(45, 91, 255, 0.2);
}

/* Course Features */
.course-features {
  background: #F8F9FA;
  padding: 60px 20px;
}

.course-features h2 {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.feature {
  background: #FFFFFF;
  padding: 24px 32px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 380px;
  border-left: 5px solid #FFB800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature:hover {
  border-left-color: #2D5BFF;
  transform: translateX(8px);
}

.feature p {
  color: #1A1A2E;
  font-weight: 700;
  font-size: 15px;
  margin: 0;
}

/* About Story */
.about-story {
  padding: 60px 20px;
}

.about-story h2 {
  margin-bottom: 32px;
}

.about-story p {
  font-size: 16px;
  line-height: 1.9;
  max-width: 800px;
  margin-bottom: 20px;
}

/* Values Section */
.values {
  background: #F8F9FA;
  padding: 60px 20px;
}

.values h2 {
  text-align: center;
  margin-bottom: 48px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card {
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  border-top: 5px solid #2D5BFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-top-color: #FFB800;
}

.value-card h3 {
  color: #2D5BFF;
  margin-bottom: 16px;
}

.value-card p {
  color: #333;
  font-size: 15px;
  line-height: 1.7;
}

/* Team Section */
.team {
  padding: 60px 20px;
}

.team h2 {
  text-align: center;
  margin-bottom: 16px;
}

.team > .container > p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 48px;
  color: #666;
  font-weight: 600;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-member {
  background: #F8F9FA;
  padding: 40px 32px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  text-align: center;
  border: 3px solid #1A1A2E;
  transition: all 0.3s ease;
}

.team-member:hover {
  border-color: #2D5BFF;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(45, 91, 255, 0.15);
}

.team-member h3 {
  color: #1A1A2E;
  margin-bottom: 8px;
  font-size: 24px;
}

.team-member .role {
  color: #2D5BFF;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.team-member p {
  color: #333;
  font-size: 15px;
  line-height: 1.7;
}

/* Achievements Section */
.achievements {
  background: #F8F9FA;
  padding: 60px 20px;
}

.achievements h2 {
  margin-bottom: 32px;
}

.achievements ul {
  max-width: 800px;
  margin: 0 auto;
}

.achievements li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 600;
  color: #1A1A2E;
  padding-left: 32px;
  position: relative;
}

.achievements li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFB800;
  font-weight: 900;
  font-size: 20px;
}

/* Featured Testimonial */
.featured-testimonial {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2D5BFF 0%, #1A3399 100%);
  color: #FFFFFF;
}

.featured-testimonial h2 {
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.featured-story {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.featured-story .quote {
  font-size: 24px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.featured-story .author {
  color: #FFB800;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.results {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.results p {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px 32px;
  border-radius: 8px;
  font-size: 16px;
  backdrop-filter: blur(10px);
}

.results strong {
  display: block;
  color: #FFB800;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}

/* Stories Grid */
.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

/* Results Metrics */
.results-metrics {
  background: #F8F9FA;
  padding: 60px 20px;
}

.results-metrics h2 {
  text-align: center;
  margin-bottom: 48px;
}

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.metric {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 360px;
  text-align: center;
  border: 3px solid #2D5BFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.metric:hover {
  border-color: #FFB800;
  transform: translateY(-8px);
}

.metric p {
  color: #1A1A2E;
  font-weight: 800;
  font-size: 18px;
  margin: 0;
}

/* Blog Sections */
.featured-article {
  padding: 60px 20px;
  background: #F8F9FA;
}

.article-featured {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 48px;
  border-radius: 12px;
  border-left: 5px solid #2D5BFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.article-featured h2 {
  color: #1A1A2E;
  margin-bottom: 16px;
}

.article-featured p {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.article-featured .meta {
  color: #2D5BFF;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.article-featured .author {
  color: #FFB800;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Blog Grid */
.blog-grid {
  padding: 60px 20px;
}

.blog-grid h2 {
  text-align: center;
  margin-bottom: 48px;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.article-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  border: 3px solid #1A1A2E;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.article-card:hover {
  border-color: #2D5BFF;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(45, 91, 255, 0.15);
}

.article-card h3 {
  color: #1A1A2E;
  margin-bottom: 16px;
  font-size: 20px;
}

.article-card p {
  color: #333;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.article-card .meta {
  color: #2D5BFF;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Newsletter Signup */
.newsletter-signup {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D5BFF 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.newsletter-signup h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.newsletter-signup > .container > p {
  font-size: 18px;
  margin-bottom: 32px;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1 1 300px;
  padding: 16px 24px;
  border: 3px solid #FFFFFF;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  min-width: 250px;
}

.email-input:focus {
  outline: none;
  border-color: #FFB800;
}

.newsletter-signup .privacy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Contact Sections */
.contact-options {
  padding: 60px 20px;
}

.contact-options h2 {
  text-align: center;
  margin-bottom: 48px;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.option-card {
  background: #F8F9FA;
  padding: 40px 32px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 360px;
  text-align: center;
  border: 3px solid #2D5BFF;
  transition: all 0.3s ease;
}

.option-card:hover {
  background: #FFFFFF;
  border-color: #FFB800;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(45, 91, 255, 0.15);
}

.option-card h3 {
  color: #2D5BFF;
  margin-bottom: 16px;
}

.option-card p {
  color: #333;
  font-size: 15px;
}

/* Contact Info */
.contact-info {
  background: #F8F9FA;
  padding: 60px 20px;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.info-item {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 360px;
  border-left: 5px solid #FFB800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-item h3 {
  color: #2D5BFF;
  margin-bottom: 16px;
  font-size: 20px;
}

.info-item p {
  color: #333;
  font-size: 15px;
  line-height: 1.7;
}

/* Legal Sections */
.legal-header {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D5BFF 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.legal-header h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.legal-header p {
  font-size: 16px;
  font-weight: 600;
}

.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #2D5BFF;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 24px;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  color: #333;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.legal-content strong {
  color: #1A1A2E;
  font-weight: 800;
}

.legal-content .contact-info {
  background: #F8F9FA;
  padding: 24px;
  border-radius: 8px;
  border-left: 5px solid #FFB800;
  margin-top: 32px;
}

.legal-navigation {
  background: #F8F9FA;
  padding: 60px 20px;
}

.legal-navigation h2 {
  text-align: center;
  margin-bottom: 32px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.legal-links a {
  background: #FFFFFF;
  padding: 16px 32px;
  border-radius: 8px;
  border: 3px solid #1A1A2E;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1A1A2E;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  background: #2D5BFF;
  border-color: #2D5BFF;
  color: #FFFFFF;
  transform: translateY(-4px);
}

/* Imprint Content */
.imprint-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.imprint-content h2 {
  color: #2D5BFF;
  margin-top: 32px;
  margin-bottom: 16px;
}

.imprint-content p {
  color: #333;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Thank You Pages */
.thank-you-hero {
  background: linear-gradient(135deg, #2D5BFF 0%, #1A3399 100%);
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
}

.thank-you-content h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 24px;
}

.thank-you-content p {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
}

.confirmation {
  display: inline-block;
  background: #FFB800;
  color: #1A1A2E;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 24px;
}

.next-steps,
.while-you-wait {
  padding: 60px 20px;
}

.next-steps h2,
.while-you-wait h2 {
  text-align: center;
  margin-bottom: 48px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.suggestion {
  background: #F8F9FA;
  padding: 40px 32px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 360px;
  text-align: center;
  border: 3px solid #2D5BFF;
  transition: all 0.3s ease;
}

.suggestion:hover {
  background: #FFFFFF;
  border-color: #FFB800;
  transform: translateY(-8px);
}

.suggestion h3 {
  color: #2D5BFF;
  margin-bottom: 24px;
}

.social-proof {
  background: #F8F9FA;
  padding: 60px 20px;
}

.social-proof h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-reminder {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D5BFF 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.contact-reminder h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.contact-reminder p {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.explore-more {
  padding: 60px 20px;
}

.explore-more h2 {
  text-align: center;
  margin-bottom: 48px;
}

.course-suggestions {
  padding: 60px 20px;
}

.course-suggestions h2 {
  text-align: center;
  margin-bottom: 48px;
}

.help-cta {
  background: #F8F9FA;
  padding: 80px 20px;
  text-align: center;
}

.help-cta h2 {
  margin-bottom: 16px;
}

.help-cta p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #666;
  font-weight: 600;
}

.enrollment-cta,
.contact-cta {
  background: #FFB800;
  padding: 80px 20px;
  text-align: center;
}

.enrollment-cta h2,
.contact-cta h2 {
  color: #1A1A2E;
  margin-bottom: 16px;
}

.enrollment-cta p,
.contact-cta p {
  color: #1A1A2E;
  font-size: 18px;
  margin-bottom: 32px;
  font-weight: 600;
}

/* Footer */
footer {
  background: #1A1A2E;
  color: #FFFFFF;
  padding: 60px 20px 32px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 calc(25% - 48px);
  min-width: 220px;
}

.footer-col img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-col h3 {
  color: #FFB800;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #FFB800;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 32px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A1A2E;
  color: #FFFFFF;
  padding: 24px 20px;
  z-index: 1998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.accept-all {
  background: #FFB800;
  color: #1A1A2E;
}

.accept-all:hover {
  background: #FFC933;
  transform: translateY(-2px);
}

.reject-all {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.reject-all:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: transparent;
  color: #FFB800;
  border: 2px solid #FFB800;
}

.cookie-settings:hover {
  background: #FFB800;
  color: #1A1A2E;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.modal-content {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
  color: #1A1A2E;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #F8F9FA;
}

.cookie-category:last-child {
  border-bottom: none;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.category-header h3 {
  color: #2D5BFF;
  font-size: 18px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-toggle.active {
  background: #2D5BFF;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s;
}

.cookie-toggle.active .toggle-slider {
  transform: translateX(24px);
}

.cookie-category p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  flex-wrap: wrap;
}

.modal-buttons button {
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.save-preferences {
  background: #2D5BFF;
  color: #FFFFFF;
}

.save-preferences:hover {
  background: #1A3399;
  transform: translateY(-2px);
}

.close-modal {
  background: #F8F9FA;
  color: #1A1A2E;
}

.close-modal:hover {
  background: #E9ECEF;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Hide desktop navigation */
  .main-nav,
  .header-cta {
    display: none;
  }

  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Typography */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .error-content h1 {
    font-size: 80px;
  }

  /* Sections */
  section {
    padding: 40px 20px;
  }

  .hero,
  .page-header {
    padding: 60px 20px;
  }

  /* Flexbox grids */
  .benefits-grid,
  .courses-grid,
  .steps-grid,
  .testimonials-grid,
  .stats-grid,
  .values-grid,
  .team-grid,
  .features-grid,
  .options-grid,
  .info-grid,
  .links-grid,
  .articles-grid,
  .suggestions-grid,
  .metrics-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .benefit-card,
  .course-card,
  .step,
  .testimonial-card,
  .stat,
  .value-card,
  .team-member,
  .feature,
  .option-card,
  .info-item,
  .link-card,
  .article-card,
  .suggestion,
  .metric {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Footer */
  .footer-grid {
    flex-direction: column;
  }

  .footer-col {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .cookie-buttons button {
    flex: 1 1 100%;
  }

  /* Trust badges */
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }

  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  /* Newsletter form */
  .newsletter-form {
    flex-direction: column;
  }

  .email-input {
    width: 100%;
  }

  /* Results */
  .results {
    flex-direction: column;
  }

  /* Modal */
  .modal-content {
    padding: 24px;
    max-height: 90vh;
  }

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

  .modal-buttons button {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  h1 {
    font-size: 40px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .benefits-grid,
  .courses-grid,
  .values-grid,
  .articles-grid {
    gap: 24px;
  }

  .benefit-card,
  .course-card,
  .value-card,
  .article-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* Animations */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .btn-primary,
  .btn-secondary,
  .cta-buttons {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  h1 {
    font-size: 24pt;
  }

  h2 {
    font-size: 18pt;
  }

  h3 {
    font-size: 14pt;
  }
}