/* ========================================
   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, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1A1A2E;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

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

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

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

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

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

h4 {
  font-size: 18px;
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E5E5E5;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  color: #1A1A2E;
  font-weight: 500;
  font-size: 16px;
  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: #0052A3;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #0052A3;
}

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

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
}

/* ========================================
   MOBILE NAVIGATION
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #0052A3;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 82, 163, 0.3);
  transition: all 0.3s ease;
}

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

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  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: transparent;
  border: none;
  font-size: 32px;
  color: #1A1A2E;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #1A1A2E;
  font-weight: 600;
  font-size: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #E5E5E5;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #0052A3;
  padding-left: 8px;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background-color: #0052A3;
  color: #FFFFFF;
  border-color: #0052A3;
}

.btn-primary:hover {
  background-color: #003D7A;
  border-color: #003D7A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 82, 163, 0.3);
}

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

.btn-secondary:hover {
  background-color: #0052A3;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 82, 163, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ========================================
   HERO SECTIONS
   ======================================== */

.hero {
  background: linear-gradient(135deg, #0052A3 0%, #003D7A 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  color: #E5F2FF;
  line-height: 1.6;
}

.hero-small {
  background: linear-gradient(135deg, #003D7A 0%, #0052A3 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.hero-small h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.hero-small p {
  font-size: 18px;
  color: #E5F2FF;
  max-width: 700px;
  margin: 0 auto 8px;
}

.last-updated {
  font-size: 14px;
  color: #B8D9FF;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

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

.value-proposition {
  padding: 60px 20px;
  background-color: #F8F9FA;
  margin-bottom: 60px;
}

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

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #5A5A6E;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.value-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  max-width: 300px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 82, 163, 0.15);
}

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

.value-card p {
  color: #5A5A6E;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .value-grid {
    flex-direction: column;
  }
  
  .value-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ========================================
   SERVICES SECTIONS
   ======================================== */

.services-overview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  justify-content: center;
}

.service-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  border-color: #0052A3;
  box-shadow: 0 8px 24px rgba(0, 82, 163, 0.12);
  transform: translateY(-4px);
}

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

.service-card p {
  color: #5A5A6E;
  margin-bottom: 16px;
  font-size: 15px;
}

.service-card .price {
  color: #0052A3;
  font-weight: 700;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0;
}

.services-overview > .btn {
  display: block;
  margin: 40px auto 0;
  max-width: 300px;
}

.services-detail {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.service-item {
  background-color: #F8F9FA;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 32px;
  border-left: 4px solid #0052A3;
}

.service-item h2 {
  color: #1A1A2E;
  margin-bottom: 16px;
}

.service-item p {
  color: #5A5A6E;
  margin-bottom: 16px;
}

.service-item .price {
  color: #0052A3;
  font-weight: 700;
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 24px;
  display: block;
}

@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
  }
  
  .service-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .service-item {
    padding: 24px;
  }
}

/* ========================================
   STATISTICS SECTION
   ======================================== */

.statistics {
  background-color: #0052A3;
  color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.stat-card {
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  margin-bottom: 20px;
}

.stat-card h3 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-card p {
  color: #B8D9FF;
  font-size: 16px;
}

@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
  }
  
  .stat-card {
    flex: 1 1 100%;
  }
}

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

.testimonials {
  padding: 60px 20px;
  background-color: #F8F9FA;
  margin-bottom: 60px;
}

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

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

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

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

.testimonial-author {
  color: #0052A3;
  font-weight: 600;
  font-size: 15px;
  font-style: normal;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .testimonial-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.cta-banner {
  background: linear-gradient(135deg, #0052A3 0%, #003D7A 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 12px;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 36px;
}

.cta-banner p {
  color: #E5F2FF;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background-color: #FFFFFF;
  color: #0052A3;
  border-color: #FFFFFF;
}

.cta-banner .btn-primary:hover {
  background-color: #E5F2FF;
  border-color: #E5F2FF;
}

@media (max-width: 768px) {
  .cta-banner h2 {
    font-size: 28px;
  }
}

/* ========================================
   MISSION & VISION SECTIONS
   ======================================== */

.mission-vision {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.mission,
.vision {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 8px;
}

.mission h2,
.vision h2 {
  color: #0052A3;
  margin-bottom: 16px;
}

.values {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #E5E5E5;
}

.values h3 {
  color: #1A1A2E;
  margin-bottom: 20px;
}

.values ul {
  list-style-type: none;
}

.values li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #5A5A6E;
  line-height: 1.6;
}

.values li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00B8D4;
  font-weight: 700;
  font-size: 18px;
}

@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
  }
  
  .mission,
  .vision {
    flex: 1 1 100%;
  }
}

/* ========================================
   STORY & APPROACH SECTIONS
   ======================================== */

.story {
  padding: 60px 20px;
  background-color: #F8F9FA;
  margin-bottom: 60px;
}

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

.story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 1.8;
  color: #5A5A6E;
}

.approach {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.approach-step {
  background-color: #FFFFFF;
  border: 2px solid #E5E5E5;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.approach-step:hover {
  border-color: #0052A3;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 82, 163, 0.15);
}

.approach-step h3 {
  color: #0052A3;
  margin-bottom: 16px;
}

.approach-step p {
  color: #5A5A6E;
  font-size: 15px;
}

@media (max-width: 768px) {
  .approach-grid {
    flex-direction: column;
  }
  
  .approach-step {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.process {
  padding: 60px 20px;
  background-color: #F8F9FA;
  margin-bottom: 60px;
}

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

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

.process-step {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: 20px;
}

.process-step h3 {
  color: #0052A3;
  margin-bottom: 12px;
  font-size: 20px;
}

.process-step p {
  color: #5A5A6E;
  font-size: 15px;
}

@media (max-width: 768px) {
  .process-grid {
    flex-direction: column;
  }
  
  .process-step {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ========================================
   DISCOVERIES PAGE
   ======================================== */

.featured-discovery {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.discovery-featured {
  background: linear-gradient(135deg, #0052A3 0%, #003D7A 100%);
  color: #FFFFFF;
  padding: 48px;
  border-radius: 12px;
  position: relative;
}

.badge {
  display: inline-block;
  background-color: #00B8D4;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.discovery-featured h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 20px;
}

.discovery-featured p {
  color: #E5F2FF;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.meta {
  color: #B8D9FF;
  font-size: 14px;
  font-style: italic;
}

.discoveries-grid {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.discovery-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.discovery-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.discovery-card:hover {
  border-color: #0052A3;
  box-shadow: 0 8px 20px rgba(0, 82, 163, 0.15);
  transform: translateY(-4px);
}

.discovery-card h3 {
  color: #1A1A2E;
  margin-bottom: 16px;
}

.discovery-card p {
  color: #5A5A6E;
  margin-bottom: 16px;
}

.category {
  display: inline-block;
  background-color: #E5F2FF;
  color: #0052A3;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .discovery-featured {
    padding: 32px 24px;
  }
  
  .discovery-featured h2 {
    font-size: 28px;
  }
  
  .discovery-cards {
    flex-direction: column;
  }
  
  .discovery-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.newsletter-section {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.newsletter-section h2 {
  margin-bottom: 16px;
}

.newsletter-section p {
  color: #5A5A6E;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.email-input {
  flex: 1 1 300px;
  padding: 14px 20px;
  border: 2px solid #E5E5E5;
  border-radius: 6px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.3s ease;
}

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

.privacy-notice {
  font-size: 13px;
  color: #7A7A8E;
  margin-top: 16px;
}

.privacy-notice a {
  color: #0052A3;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    flex: 1 1 100%;
  }
  
  .newsletter-form .btn {
    width: 100%;
  }
}

/* ========================================
   EDUCATION PROGRAMS PAGE
   ======================================== */

.education-levels {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.level-card {
  background-color: #FFFFFF;
  border: 2px solid #E5E5E5;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 350px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.level-card:hover {
  border-color: #00B8D4;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 184, 212, 0.15);
}

.level-card h3 {
  color: #0052A3;
  margin-bottom: 16px;
}

.level-card p {
  color: #5A5A6E;
}

.mint-subjects {
  padding: 60px 20px;
  background-color: #F8F9FA;
  margin-bottom: 60px;
}

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

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

.subject-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.subject-card h3 {
  color: #1A1A2E;
  margin-bottom: 12px;
}

.subject-card p {
  color: #5A5A6E;
  font-size: 15px;
}

.program-formats {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.program-formats h2 {
  text-align: center;
  margin-bottom: 32px;
}

.formats-list {
  max-width: 700px;
  margin: 0 auto;
  list-style-type: none;
}

.formats-list li {
  padding: 16px 0 16px 40px;
  position: relative;
  color: #5A5A6E;
  font-size: 17px;
  line-height: 1.6;
  border-bottom: 1px solid #E5E5E5;
}

.formats-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #00B8D4;
  font-weight: 700;
  font-size: 20px;
}

.success-metrics {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.metric {
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  margin-bottom: 20px;
}

.metric h3 {
  color: #0052A3;
  font-size: 48px;
  margin-bottom: 8px;
}

.metric p {
  color: #5A5A6E;
  font-size: 16px;
}

@media (max-width: 768px) {
  .levels-grid,
  .subjects-grid {
    flex-direction: column;
  }
  
  .level-card,
  .subject-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .metrics-grid {
    flex-direction: column;
  }
  
  .metric {
    flex: 1 1 100%;
  }
}

/* ========================================
   BLOG PAGE
   ======================================== */

.featured-post {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.post-featured {
  background: linear-gradient(135deg, #003D7A 0%, #0052A3 100%);
  color: #FFFFFF;
  padding: 48px;
  border-radius: 12px;
  position: relative;
}

.post-featured h2 {
  color: #FFFFFF;
  font-size: 32px;
  margin-bottom: 20px;
}

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

.blog-grid {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.post-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.post-card:hover {
  border-color: #0052A3;
  box-shadow: 0 8px 20px rgba(0, 82, 163, 0.15);
  transform: translateY(-4px);
}

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

.post-card p {
  color: #5A5A6E;
  margin-bottom: 12px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .post-featured {
    padding: 32px 24px;
  }
  
  .post-featured h2 {
    font-size: 24px;
  }
  
  .posts-grid {
    flex-direction: column;
  }
  
  .post-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.contact-info {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.contact-details {
  flex: 1 1 calc(45% - 48px);
  min-width: 300px;
}

.contact-details h2 {
  margin-bottom: 32px;
}

.contact-item {
  margin-bottom: 32px;
}

.contact-item h3 {
  color: #0052A3;
  margin-bottom: 12px;
  font-size: 18px;
}

.contact-item p {
  color: #5A5A6E;
  line-height: 1.7;
}

.contact-item a {
  color: #0052A3;
  text-decoration: underline;
}

.contact-form-section {
  flex: 1 1 calc(55% - 48px);
  min-width: 300px;
  background-color: #F8F9FA;
  padding: 40px;
  border-radius: 8px;
}

.contact-form-section h2 {
  margin-bottom: 24px;
}

.form-info {
  color: #5A5A6E;
  line-height: 1.7;
}

.form-info p {
  margin-bottom: 20px;
}

.form-info a {
  color: #000000;
  text-decoration: underline;
}

.response-info {
  padding: 60px 20px;
  background-color: #F8F9FA;
  margin-bottom: 60px;
}

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

.response-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: 20px;
}

.step h3 {
  color: #0052A3;
  margin-bottom: 12px;
}

.step p {
  color: #5A5A6E;
  font-size: 15px;
}

@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-details,
  .contact-form-section {
    flex: 1 1 100%;
  }
  
  .contact-form-section {
    padding: 24px;
  }
  
  .response-steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0052A3 0%, #003D7A 100%);
  color: #FFFFFF;
  margin-bottom: 60px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #00B8D4;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 32px;
}

.thank-you-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: #E5F2FF;
  font-size: 18px;
  margin-bottom: 32px;
}

.next-steps {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.meanwhile {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.suggestion-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: 20px;
}

.suggestion-card h3 {
  color: #1A1A2E;
  margin-bottom: 12px;
}

.suggestion-card p {
  color: #5A5A6E;
  margin-bottom: 20px;
  font-size: 15px;
}

.suggestion-card a {
  color: #0052A3;
  font-weight: 600;
  text-decoration: underline;
}

.contact-alternative {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.contact-alternative h2 {
  margin-bottom: 16px;
}

.contact-alternative p {
  color: #5A5A6E;
  margin-bottom: 32px;
}

.contact-alternative .contact-info {
  padding: 0;
  margin: 0;
}

.contact-alternative .contact-info p {
  color: #5A5A6E;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .suggestion-grid {
    flex-direction: column;
  }
  
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.content-wrapper h2 {
  color: #1A1A2E;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid #E5E5E5;
}

.content-wrapper h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-wrapper h3 {
  color: #0052A3;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 18px;
}

.content-wrapper p {
  color: #5A5A6E;
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.content-wrapper li {
  color: #5A5A6E;
  margin-bottom: 8px;
  line-height: 1.7;
}

.content-wrapper a {
  color: #0052A3;
  text-decoration: underline;
}

.content-wrapper a:hover {
  color: #003D7A;
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 32px 24px;
  }
}

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

footer {
  background-color: #1A1A2E;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-brand {
  flex: 1 1 300px;
}

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

.footer-brand p {
  color: #B8B8C8;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact,
.footer-links,
.footer-legal {
  flex: 1 1 200px;
}

.footer-contact h3,
.footer-links h3,
.footer-legal h3 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-contact p {
  color: #B8B8C8;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-links a,
.footer-legal a {
  display: block;
  color: #B8B8C8;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #00B8D4;
}

.footer-bottom {
  border-top: 1px solid #2A2A3E;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #B8B8C8;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-brand,
  .footer-contact,
  .footer-links,
  .footer-legal {
    flex: 1 1 100%;
  }
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 2px solid #E5E5E5;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.cookie-text p {
  color: #1A1A2E;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.6;
}

.cookie-text a {
  color: #0052A3;
  text-decoration: underline;
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
  white-space: nowrap;
}

.btn-accept {
  background-color: #0052A3;
  color: #FFFFFF;
  border: 2px solid #0052A3;
}

.btn-accept:hover {
  background-color: #003D7A;
  border-color: #003D7A;
}

.btn-reject {
  background-color: transparent;
  color: #5A5A6E;
  border: 2px solid #E5E5E5;
}

.btn-reject:hover {
  background-color: #F8F9FA;
  border-color: #5A5A6E;
}

.btn-settings {
  background-color: transparent;
  color: #0052A3;
  border: 2px solid #0052A3;
}

.btn-settings:hover {
  background-color: #E5F2FF;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
}

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 28px;
  color: #5A5A6E;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #1A1A2E;
  transform: rotate(90deg);
}

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

.cookie-category {
  border-bottom: 1px solid #E5E5E5;
  padding: 20px 0;
}

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

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

.cookie-category h3 {
  color: #1A1A2E;
  font-size: 18px;
  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: #E5E5E5;
  transition: 0.3s;
  border-radius: 26px;
}

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #0052A3;
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-category p {
  color: #5A5A6E;
  font-size: 14px;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .btn {
    width: 100%;
  }
}

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

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.hidden {
  display: none !important;
}

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

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

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

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid #00B8D4;
  outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #00B8D4;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}