/* 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', Arial, sans-serif;
  line-height: 1.6;
  color: #1F2937;
  background-color: #F9FAFB;
}

/* Professional Corporate Color Palette */
:root {
  --primary-blue: #1E3A8A;
  --primary-blue-dark: #1E40AF;
  --primary-blue-light: #3B82F6;
  --secondary-red: #DC2626;
  --accent-gold: #F59E0B;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --white: #FFFFFF;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: var(--gray-700);
}

a {
  text-decoration: none;
  color: var(--primary-blue);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-blue-light);
}

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

li {
  margin-bottom: 8px;
  color: var(--gray-700);
}

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

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-700);
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary-blue);
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: var(--primary-blue-dark);
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--gray-700);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--secondary-red);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--gray-800);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--primary-blue);
  padding-left: 8px;
}

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

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

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

.btn:not(.btn-primary):not(.btn-secondary) {
  background-color: var(--gray-100);
  color: var(--gray-800);
}

.btn:not(.btn-primary):not(.btn-secondary):hover {
  background-color: var(--gray-200);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--white);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></svg>');
  opacity: 0.5;
}

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

.hero-content {
  max-width: 800px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-indicators span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-indicators span::before {
  content: '✓';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-weight: bold;
  font-size: 12px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a:hover {
  color: var(--white);
}

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

.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

section h2 {
  text-align: center;
  margin-bottom: 16px;
  color: var(--gray-900);
}

/* Value Proposition */
.value-proposition {
  background-color: var(--white);
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background-color: var(--gray-50);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.12);
}

.value-card h3 {
  color: var(--primary-blue);
  margin-bottom: 12px;
  font-size: 20px;
}

/* Services Grid */
.services-grid,
.course-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.service-card,
.course-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.service-card:hover,
.course-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
}

.service-card h3,
.course-card h3 {
  color: var(--gray-900);
  margin-bottom: 8px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-blue);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.duration {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* Methodology Preview */
.methodology-preview {
  background-color: var(--gray-50);
}

.method-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 32px;
}

.method-step {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background-color: var(--white);
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.method-step:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.method-step h3 {
  color: var(--primary-blue);
  font-size: 24px;
  margin-bottom: 12px;
}

.link {
  display: inline-block;
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.link::after {
  content: '→';
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.link:hover::after {
  margin-left: 12px;
}

/* Testimonials */
.testimonials {
  background-color: var(--white);
  padding: 60px 20px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: var(--gray-50);
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonial-author {
  color: var(--gray-700);
  font-style: normal;
  font-size: 14px;
  margin-top: 8px;
}

.testimonial-author strong {
  color: var(--gray-900);
  font-weight: 700;
}

.rating-display {
  text-align: center;
  margin-top: 24px;
}

.rating-display p {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
}

/* Stats Banner */
.stats-banner {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.stat {
  text-align: center;
  flex: 1 1 200px;
  min-width: 150px;
}

.stat h3 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
}

.stat p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* CTA Sections */
.cta-final,
.cta-section {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 0;
}

.cta-final h2,
.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-final p,
.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-statement {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 24px;
}

/* Story Section */
.story {
  background-color: var(--white);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.milestone {
  flex: 1 1 calc(25% - 18px);
  min-width: 180px;
  text-align: center;
  padding: 24px;
  background-color: var(--gray-50);
  border-radius: 12px;
  margin-bottom: 20px;
}

.milestone h3 {
  font-size: 32px;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

/* Mission Vision Values */
.mission-vision {
  background-color: var(--gray-50);
}

.mission,
.vision,
.values {
  margin-bottom: 40px;
  padding: 32px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.values ul {
  list-style: none;
  margin-left: 0;
}

.values li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.values li::before {
  content: '▸';
  position: absolute;
  left: 8px;
  color: var(--primary-blue);
  font-weight: bold;
}

/* Expertise */
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.expertise-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background-color: var(--white);
  padding: 32px;
  border-radius: 12px;
  border-top: 4px solid var(--accent-gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.expertise-item h3 {
  color: var(--gray-900);
  margin-bottom: 8px;
}

.expertise-item p {
  color: var(--gray-600);
  font-weight: 600;
  font-size: 14px;
}

/* Process Steps */
.process-steps {
  background-color: var(--white);
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  padding: 32px;
  background-color: var(--gray-50);
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step:hover {
  background-color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.step h3 {
  color: var(--primary-blue);
  margin-bottom: 12px;
}

/* Techniques */
.techniques-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.technique-category {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background-color: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.technique-category h3 {
  color: var(--primary-blue);
  margin-bottom: 12px;
}

/* Learning Environment */
.learning-environment ul,
.success-measurement ul {
  list-style: none;
  margin-left: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.learning-environment li,
.success-measurement li {
  padding: 16px;
  padding-left: 48px;
  position: relative;
  background-color: var(--white);
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.learning-environment li::before,
.success-measurement li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
}

/* Success Stories */
.stats-highlight {
  background-color: var(--gray-50);
}

.success-stories {
  background-color: var(--white);
}

.story-card {
  background-color: var(--gray-50);
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 32px;
  border-left: 4px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.story-card h3 {
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.story-card p {
  margin-bottom: 12px;
}

.story-card blockquote {
  margin-top: 24px;
  padding: 20px;
  background-color: var(--white);
  border-left: 4px solid var(--accent-gold);
  font-style: italic;
  color: var(--gray-800);
  border-radius: 8px;
}

.author {
  font-size: 14px;
  color: var(--gray-700);
  margin-top: 8px;
}

/* Rating Aggregation */
.rating-aggregation {
  background-color: var(--gray-50);
  text-align: center;
}

.rating-aggregation ul {
  list-style: none;
  margin-left: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.rating-aggregation li {
  padding: 12px;
  margin-bottom: 8px;
}

/* Blog */
.blog-categories {
  background-color: var(--white);
  padding: 32px 20px;
  margin-bottom: 40px;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.category {
  padding: 10px 20px;
  background-color: var(--gray-100);
  color: var(--gray-700);
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.article-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  border: 2px solid var(--gray-200);
}

.article-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.article-category {
  display: inline-block;
  padding: 6px 12px;
  background-color: var(--primary-blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-card h3 {
  color: var(--gray-900);
  margin-bottom: 12px;
  font-size: 20px;
}

.article-meta {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 16px;
  margin-bottom: 0;
}

.popular-posts {
  background-color: var(--gray-50);
}

.popular-list {
  list-style: none;
  margin-left: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.popular-list li {
  padding: 16px;
  background-color: var(--white);
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.popular-list li:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

.popular-list a {
  font-weight: 600;
  color: var(--primary-blue);
}

/* Contact Page */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.contact-method {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background-color: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin-bottom: 20px;
  border-top: 4px solid var(--primary-blue);
}

.contact-method h3 {
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.form-info {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--gray-50);
  padding: 32px;
  border-radius: 12px;
  margin-top: 32px;
}

.location-map ul {
  list-style: none;
  margin-left: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.location-map li {
  padding: 12px;
  padding-left: 32px;
  position: relative;
  margin-bottom: 8px;
}

.location-map li::before {
  content: '→';
  position: absolute;
  left: 8px;
  color: var(--primary-blue);
  font-weight: bold;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--primary-blue);
}

.faq-item h3 {
  color: var(--primary-blue);
  font-size: 18px;
  margin-bottom: 8px;
}

.faq-item p {
  margin-bottom: 0;
}

.trust-signals {
  background-color: var(--gray-50);
}

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

.trust-grid p {
  flex: 1 1 200px;
  min-width: 180px;
  text-align: center;
  padding: 20px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0;
}

/* Legal Pages */
.legal-page {
  background-color: var(--white);
  padding: 60px 20px;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  margin-bottom: 24px;
}

.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 24px;
  color: var(--primary-blue);
}

.legal-page h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 18px;
}

.legal-page ul {
  margin-bottom: 24px;
}

.legal-page a {
  color: var(--primary-blue);
  text-decoration: underline;
}

.subtitle {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 32px;
}

/* Thank You Page */
.thank-you-hero,
.thank-you-page {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.checkmark,
.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--accent-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.thank-you-content h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.thank-you-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}

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

.suggestions-grid,
.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.suggestion,
.courses-grid .course-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin-bottom: 20px;
}

.suggestion h3 {
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.courses-grid .course-card {
  flex: 1 1 calc(33.333% - 16px);
}

/* Benefits */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.benefit::before {
  content: '✓';
  display: block;
  width: 32px;
  height: 32px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.benefit p {
  margin-bottom: 0;
  color: var(--gray-800);
  font-weight: 600;
}

/* Principles Grid */
.principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.principle {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background-color: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 4px solid var(--primary-blue);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.principle:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.principle h3 {
  color: var(--primary-blue);
  margin-bottom: 12px;
}

/* Footer */
footer {
  background-color: var(--gray-900);
  color: var(--white);
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 0;
}

/* Cookie Consent Banner */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--gray-900);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookie-btn-accept {
  background-color: var(--primary-blue);
  color: var(--white);
}

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

.cookie-btn-reject {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Cookie Settings Modal */
#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-settings-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: var(--white);
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h2 {
  color: var(--gray-900);
  margin-bottom: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--gray-600);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: var(--gray-900);
}

.cookie-category {
  padding: 20px;
  background-color: var(--gray-50);
  border-radius: 8px;
  margin-bottom: 16px;
}

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

.cookie-category h3 {
  color: var(--gray-900);
  font-size: 16px;
  margin-bottom: 0;
}

.cookie-category p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-300);
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--white);
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: var(--primary-blue);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background-color: var(--gray-400);
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-footer button {
  flex: 1;
  min-width: 120px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .value-card,
  .service-card,
  .course-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .method-step,
  .principle {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  section {
    padding: 32px 20px;
    margin-bottom: 40px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Make all cards full width on mobile */
  .value-card,
  .service-card,
  .course-card,
  .method-step,
  .testimonial-card,
  .milestone,
  .expertise-item,
  .step,
  .technique-category,
  .article-card,
  .contact-method,
  .principle,
  .benefit,
  .suggestion {
    flex: 1 1 100%;
  }
  
  /* Adjust button sizing */
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Stats grid adjustments */
  .stats-grid {
    gap: 24px;
  }
  
  .stat {
    flex: 1 1 calc(50% - 12px);
  }
  
  /* Footer adjustments */
  .footer-content {
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 100px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-footer {
    flex-direction: column;
  }
  
  .cookie-modal-footer button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  section {
    padding: 24px 16px;
    margin-bottom: 32px;
  }
  
  .value-card,
  .service-card,
  .course-card,
  .story-card {
    padding: 24px;
  }
  
  .stat h3 {
    font-size: 36px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-subtitle,
  .section-subtitle {
    font-size: 16px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent-banner,
  #cookie-settings-modal {
    display: none !important;
  }
  
  header {
    position: static;
    box-shadow: none;
  }
  
  .hero {
    background: var(--white);
    color: var(--gray-900);
  }
  
  .hero h1,
  .hero p {
    color: var(--gray-900);
  }
  
  a {
    color: var(--gray-900);
    text-decoration: underline;
  }
}

/* Animation Utilities */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .btn {
    border-width: 3px;
  }
  
  .card,
  .service-card,
  .course-card {
    border-width: 3px;
  }
}