/* ================================
   SHINEPEAK ACADEMY - PROFESSIONAL CORPORATE DESIGN
   CSS Reset & Base Styles
   ================================ */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ================================
   TYPOGRAPHY
   ================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 16px;
}

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

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

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 16px;
  color: #4b5563;
  font-size: 16px;
}

/* ================================
   CONTAINER & LAYOUT
   ================================ */

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

section {
  margin-bottom: 60px;
  padding: 60px 0;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */

header {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e5e7eb;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

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

header nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

header nav a {
  color: #374151;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #2563eb;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2563eb;
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* ================================
   MOBILE MENU
   ================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1100;
  background-color: #2563eb;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1d4ed8;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1200;
  padding: 80px 32px 32px;
  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-color: #ef4444;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #374151;
  font-weight: 500;
  font-size: 18px;
  padding: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover {
  background-color: #f3f4f6;
  color: #2563eb;
  transform: translateX(8px);
}

/* ================================
   BUTTONS
   ================================ */

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
  background-color: #1d4ed8;
  box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-secondary:hover {
  background-color: #2563eb;
  color: white;
  transform: translateY(-2px);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 52px;
  color: #1e3a8a;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle, .hero p {
  font-size: 20px;
  color: #475569;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

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

.trust-badges span {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* ================================
   VALUE PROPOSITION
   ================================ */

.value-proposition {
  background-color: #f8fafc;
}

.value-proposition h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 16px;
}

.value-proposition > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #64748b;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background-color: white;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.value-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: #2563eb;
}

.value-card h3 {
  color: #1e40af;
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  color: #64748b;
  font-size: 15px;
  margin: 0;
}

/* ================================
   SERVICES/COURSES SECTION
   ================================ */

.services, .courses {
  background-color: #ffffff;
}

.services h2, .courses h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 16px;
}

.services > .container > p, .courses > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #64748b;
}

.service-grid, .course-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.service-card, .course-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  background-color: #f8fafc;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover, .course-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: #2563eb;
}

.service-card h3, .course-card h2 {
  color: #1e40af;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p, .course-card p {
  color: #475569;
  font-size: 15px;
  flex-grow: 1;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #2563eb;
  margin: 16px 0;
}

.course-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.course-meta span {
  background-color: #dbeafe;
  color: #1e40af;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

.highlights {
  margin: 16px 0;
}

.highlights li {
  color: #475569;
  font-size: 14px;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

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

/* ================================
   PROCESS/STEPS SECTION
   ================================ */

.process {
  background-color: #f8fafc;
}

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

.step-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  text-align: center;
  padding: 24px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.step h3 {
  color: #1e40af;
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  color: #64748b;
  font-size: 15px;
  margin: 0;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */

.testimonials {
  background-color: #ffffff;
  padding: 80px 0;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #f8fafc;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2563eb;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  color: #1f2937;
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author strong {
  color: #1e293b;
  font-size: 16px;
  font-weight: 600;
}

.author span {
  color: #64748b;
  font-size: 14px;
}

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 32px;
  background-color: #eff6ff;
  border-radius: 12px;
}

.stats-bar span {
  color: #1e40af;
  font-size: 16px;
  font-weight: 600;
}

/* ================================
   CTA BANNER
   ================================ */

.cta-banner {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
  margin-bottom: 0;
}

.cta-banner h2 {
  color: white;
  font-size: 38px;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #dbeafe;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.cta-banner .btn-primary {
  background-color: white;
  color: #2563eb;
}

.cta-banner .btn-primary:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
}

.cta-banner .btn-secondary {
  background-color: transparent;
  color: white;
  border-color: white;
}

.cta-banner .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.trust-note {
  color: #dbeafe;
  font-size: 14px;
  margin-top: 24px;
}

/* ================================
   MISSION & VALUES
   ================================ */

.mission {
  background-color: #f8fafc;
}

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

.mission-block {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2563eb;
}

.mission-block h2 {
  color: #1e40af;
  font-size: 28px;
  margin-bottom: 16px;
}

.mission-block p {
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}

.values h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 40px;
  margin-top: 60px;
}

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

.value-item h3 {
  color: #1e40af;
  font-size: 20px;
  margin-bottom: 8px;
}

.value-item p {
  color: #64748b;
  font-size: 15px;
  margin: 0;
}

/* ================================
   STORY & TIMELINE
   ================================ */

.story {
  background-color: #ffffff;
}

.story h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 16px;
}

.story > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #64748b;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.timeline-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #f8fafc;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.year {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 12px;
}

.timeline-item p {
  color: #475569;
  font-size: 15px;
  margin: 0;
}

/* ================================
   ACHIEVEMENTS
   ================================ */

.achievements {
  background-color: #f8fafc;
}

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

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.stat-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  background-color: white;
  padding: 40px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 4px solid #2563eb;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2563eb;
  display: block;
  margin-bottom: 8px;
}

.stat-card p {
  color: #64748b;
  font-size: 16px;
  margin: 0;
}

/* ================================
   APPROACH SECTION
   ================================ */

.approach {
  background-color: #ffffff;
}

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

.approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.approach-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  padding: 32px 24px;
  background-color: #f8fafc;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.approach-card:hover {
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.approach-card h3 {
  color: #1e40af;
  font-size: 20px;
  margin-bottom: 12px;
}

.approach-card p {
  color: #64748b;
  font-size: 15px;
  margin: 0;
}

/* ================================
   BLOG SECTIONS
   ================================ */

.blog-featured {
  background-color: #f8fafc;
}

.featured-post {
  background-color: white;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #2563eb;
  position: relative;
}

.badge {
  display: inline-block;
  background-color: #2563eb;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.featured-post h2 {
  color: #1e293b;
  font-size: 32px;
  margin-bottom: 16px;
}

.featured-post p {
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.post-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.post-meta span {
  color: #64748b;
  font-size: 14px;
}

.blog-categories {
  background-color: #ffffff;
  padding: 40px 0;
}

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

.category-filter button {
  padding: 10px 20px;
  border-radius: 24px;
  border: 2px solid #e2e8f0;
  background-color: white;
  color: #475569;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.category-filter button:hover,
.category-filter button.active {
  background-color: #2563eb;
  color: white;
  border-color: #2563eb;
}

.blog-grid {
  background-color: #f8fafc;
}

.blog-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.blog-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  background-color: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: #2563eb;
}

.blog-card h3 {
  color: #1e293b;
  font-size: 20px;
  margin-bottom: 12px;
}

.blog-card p {
  color: #64748b;
  font-size: 15px;
  flex-grow: 1;
  margin-bottom: 16px;
}

.read-more {
  color: #2563eb;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* ================================
   NEWSLETTER
   ================================ */

.newsletter {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
  margin-bottom: 0;
}

.newsletter h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 16px;
}

.newsletter > .container > p {
  color: #dbeafe;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}

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

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  border-radius: 8px;
  border: 2px solid white;
  font-size: 16px;
}

.newsletter-form button {
  padding: 14px 32px;
}

.privacy-note {
  color: #dbeafe;
  font-size: 13px;
  margin-top: 16px;
}

/* ================================
   SUCCESS STORIES
   ================================ */

.featured-story, .story-featured {
  background-color: white;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #2563eb;
  margin-bottom: 40px;
}

.story-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 16px 0;
}

.story-meta strong {
  color: #1e293b;
  font-size: 18px;
}

.story-meta span {
  color: #64748b;
  font-size: 15px;
}

.metrics {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid #e2e8f0;
}

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

.metric .number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 8px;
}

.metric p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

.success-stories {
  background-color: #f8fafc;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.story-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  background-color: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2563eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-card h3 {
  color: #1e293b;
  font-size: 22px;
  margin-bottom: 8px;
}

.course-badge {
  display: inline-block;
  background-color: #dbeafe;
  color: #1e40af;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.story-card p {
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
  flex-grow: 1;
}

.result {
  background-color: #f0fdf4;
  color: #166534;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
}

.results {
  background-color: #ffffff;
}

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

.results-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.result-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 40px 24px;
  background-color: #f8fafc;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}

/* ================================
   CONTACT PAGE
   ================================ */

.contact-options {
  background-color: #f8fafc;
}

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

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.option-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background-color: white;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.option-card:hover {
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.option-card h3 {
  color: #1e40af;
  font-size: 20px;
  margin-bottom: 8px;
}

.option-card p {
  color: #64748b;
  font-size: 15px;
  margin: 0;
}

.contact-form-section {
  background-color: #ffffff;
}

.contact-form-section h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 48px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: #f8fafc;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  color: #374151;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: white;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-field.checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-field.checkbox label {
  margin: 0;
  font-weight: 400;
}

.form-container button {
  width: 100%;
  margin-top: 8px;
}

.response-note {
  text-align: center;
  color: #64748b;
  font-size: 14px;
  margin-top: 16px;
}

.contact-info {
  background-color: #f8fafc;
}

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

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

.info-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2563eb;
}

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

.info-card p {
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.consultation {
  background-color: #ffffff;
  text-align: center;
}

.consultation h2 {
  color: #1e293b;
  margin-bottom: 16px;
}

.consultation > .container > p {
  color: #64748b;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto 32px;
  text-align: left;
}

.benefits li {
  color: #475569;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 18px;
}

.faq-quick {
  background-color: #f8fafc;
}

.faq-quick h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 48px;
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.faq-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2563eb;
}

.faq-item h3 {
  color: #1e40af;
  font-size: 18px;
  margin-bottom: 8px;
}

.faq-item p {
  color: #64748b;
  font-size: 15px;
  margin: 0;
}

/* ================================
   LEGAL PAGES
   ================================ */

.legal-page {
  background-color: #ffffff;
  padding: 60px 0;
}

.legal-page h1 {
  color: #1e293b;
  font-size: 42px;
  margin-bottom: 16px;
}

.last-updated {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 40px;
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  color: #1e40af;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #374151;
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  color: #475569;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 32px;
}

.legal-content li {
  color: #475569;
  font-size: 16px;
  margin-bottom: 8px;
  list-style-type: disc;
}

/* ================================
   404 & THANK YOU PAGES
   ================================ */

.hero-404 {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 100px 0;
  text-align: center;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: #2563eb;
  line-height: 1;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

.hero-404 h1 {
  color: #1e293b;
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-404 p {
  color: #64748b;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.quick-links {
  background-color: #f8fafc;
}

.quick-links h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 48px;
}

.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.link-card:hover {
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.link-card h3 {
  color: #1e40af;
  font-size: 20px;
  margin-bottom: 8px;
}

.link-card p {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 20px;
}

.thank-you-hero {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 100px 0;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.thank-you-hero h1 {
  color: #065f46;
  font-size: 42px;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: #047857;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 16px;
}

.confirmation {
  color: #10b981;
  font-weight: 600;
}

.next-steps, .while-waiting, .next-actions {
  background-color: #ffffff;
}

.next-steps h2, .while-waiting h2, .next-actions h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 16px;
}

.next-steps > .container > p,
.while-waiting > .container > p {
  text-align: center;
  color: #64748b;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 48px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.action-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #f8fafc;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.action-card:hover {
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.action-card h3 {
  color: #1e40af;
  font-size: 22px;
  margin-bottom: 12px;
}

.action-card p {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 20px;
}

.social-proof, .trust-section {
  background-color: #f8fafc;
}

.social-proof h2, .trust-section h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 48px;
}

/* ================================
   LEARNING EXPERIENCE
   ================================ */

.learning-experience {
  background-color: #f8fafc;
}

.learning-experience h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 48px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.feature-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  background-color: white;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
  color: #1e40af;
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: #64748b;
  font-size: 15px;
  margin: 0;
}

/* ================================
   FOOTER
   ================================ */

footer {
  background-color: #1e293b;
  color: #cbd5e1;
  padding: 60px 0 24px;
  margin-top: 0;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #334155;
}

.footer-column {
  flex: 1 1 calc(33.333% - 48px);
  min-width: 240px;
}

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

.footer-column h4 {
  color: #f1f5f9;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-column p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-column a {
  display: block;
  color: #cbd5e1;
  font-size: 14px;
  padding: 6px 0;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #60a5fa;
  padding-left: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-links a {
  color: #cbd5e1;
  font-size: 13px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #60a5fa;
}

/* ================================
   COOKIE CONSENT BANNER
   ================================ */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1e293b;
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-text p {
  color: #cbd5e1;
  font-size: 14px;
  margin: 0;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: #10b981;
  color: white;
}

.cookie-btn-accept:hover {
  background-color: #059669;
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background-color: #6b7280;
  color: white;
}

.cookie-btn-reject:hover {
  background-color: #4b5563;
}

.cookie-btn-settings {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

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

/* Cookie Settings Modal */
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-settings-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-settings-content {
  background-color: white;
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-settings-modal.active .cookie-settings-content {
  transform: scale(1);
}

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

.cookie-settings-header h3 {
  color: #1e293b;
  font-size: 24px;
  margin: 0;
}

.cookie-settings-close {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background-color: #f3f4f6;
  color: #374151;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-settings-close:hover {
  background-color: #e5e7eb;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

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

.cookie-category h4 {
  color: #1e293b;
  font-size: 18px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background-color: #cbd5e1;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #10b981;
}

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

.cookie-toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.cookie-category p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

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

.cookie-settings-actions button {
  flex: 1;
  min-width: 140px;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  
  .value-card,
  .service-card,
  .course-card,
  .approach-card,
  .feature-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(50% - 32px);
  }
}

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  p { font-size: 15px; }
  
  /* Header Navigation */
  header nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Sections */
  section {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle, .hero p {
    font-size: 17px;
  }
  
  /* Grids */
  .value-grid,
  .service-grid,
  .course-grid,
  .step-grid,
  .testimonial-grid,
  .blog-posts,
  .story-grid,
  .stats-grid,
  .approach-grid,
  .feature-grid,
  .options-grid,
  .info-grid,
  .link-grid,
  .action-grid,
  .faq-grid,
  .results-grid {
    gap: 20px;
  }
  
  .value-card,
  .service-card,
  .course-card,
  .step,
  .testimonial-card,
  .blog-card,
  .story-card,
  .stat-card,
  .approach-card,
  .feature-card,
  .option-card,
  .info-card,
  .link-card,
  .action-card,
  .faq-item,
  .result-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Timeline */
  .timeline-item {
    flex: 1 1 calc(50% - 20px);
  }
  
  /* Mission Grid */
  .mission-grid {
    gap: 20px;
  }
  
  .mission-block {
    flex: 1 1 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Trust Badges */
  .trust-badges {
    gap: 16px;
  }
  
  .stats-bar {
    gap: 24px;
    padding: 24px 16px;
  }
  
  /* Featured Post */
  .featured-post {
    padding: 32px 24px;
  }
  
  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    width: 100%;
  }
  
  .newsletter-form button {
    width: 100%;
  }
  
  /* Metrics */
  .metrics {
    gap: 20px;
  }
  
  .metric {
    flex: 1 1 100%;
  }
  
  /* Form */
  .form-container {
    padding: 24px;
  }
  
  /* Footer */
  .footer-main {
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie Consent */
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-settings-content {
    padding: 24px;
  }
  
  .cookie-settings-actions {
    flex-direction: column;
  }
  
  .cookie-settings-actions button {
    width: 100%;
  }
  
  /* Error Page */
  .error-code {
    font-size: 80px;
  }
  
  .hero-404 h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 16px;
  }
  
  /* Typography */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Hero */
  .hero h1 {
    font-size: 28px;
  }
  
  /* Sections */
  section {
    padding: 32px 0;
    margin-bottom: 32px;
  }
  
  /* Cards */
  .value-card,
  .service-card,
  .course-card,
  .story-card,
  .approach-card,
  .feature-card,
  .option-card,
  .info-card,
  .link-card,
  .action-card {
    padding: 24px;
  }
  
  /* Step Number */
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  /* Timeline */
  .timeline-item {
    flex: 1 1 100%;
  }
  
  /* Stats Bar */
  .stats-bar {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    width: 90%;
    max-width: 100%;
  }
  
  /* Error Code */
  .error-code {
    font-size: 60px;
  }
}

/* ================================
   ANIMATIONS
   ================================ */

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

/* ================================
   UTILITY CLASSES
   ================================ */

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

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ================================
   PRINT STYLES
   ================================ */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cta-banner,
  .cookie-consent-banner,
  .cookie-settings-modal {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000;
  }
  
  a {
    text-decoration: underline;
  }
}