* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #0B1220;
  background: #F8FAFC;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.site-header {
  background: #0B1220;
  color: #F8FAFC;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img {
  max-height: 50px;
}
.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav a {
  color: #F8FAFC;
  font-weight: 500;
}
.burger, .close-btn {
  display: none;
}
.nav-toggle {
  display: none;
}
.hero {
  background: #0B1220;
  color: #F8FAFC;
  padding: 80px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-content h1 {
  font-size: 40px;
  margin-bottom: 16px;
}
.hero-content p {
  margin-bottom: 16px;
}
.highlight {
  color: #00C2A8;
}
.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
}
.btn-primary {
  background: #00C2A8;
  color: #0B1220;
}
.btn-secondary {
  background: transparent;
  color: #F8FAFC;
  border: 2px solid #3B82F6;
}
.trust, .modules, .pathway, .insights, .faq, .contact-block, .page-hero, .about-story, .mission, .approach, .learning-environment, .service-list, .service-details, .contact-page, .contact-info, .legal-content, .contact-strip {
  padding: 70px 0;
}
.trust-grid, .module-grid, .insights-grid, .mission-grid, .environment-grid, .details-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.trust-card, .module-card, .insight-card, .service-card, .summary-box {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(11,18,32,0.08);
}
.pathway-grid, .split-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.list {
  margin-top: 16px;
  padding-left: 18px;
}
.list li {
  margin-bottom: 10px;
}
.insight-card img {
  border-radius: 8px;
  margin-bottom: 12px;
}
.faq-list details {
  background: #FFFFFF;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(11,18,32,0.06);
}
.form {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(11,18,32,0.08);
  display: grid;
  gap: 12px;
}
.form input, .form textarea {
  padding: 10px;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
}
.site-footer {
  background: #0B1220;
  color: #F8FAFC;
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
}
.footer-logo {
  max-height: 100px;
  margin-bottom: 12px;
}
.footer-menu a {
  display: block;
  margin-bottom: 8px;
  color: #F8FAFC;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 16px;
  margin-top: 24px;
  text-align: center;
}
.page-hero {
  background: #E2E8F0;
}
.page-hero h1 {
  font-size: 36px;
  margin-bottom: 12px;
}
.service-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: center;
}
.service-card.reverse {
  grid-template-columns: 1fr 1.2fr;
}
.contact-strip {
  background: #F59E0B;
  color: #0B1220;
  text-align: center;
}
.contact-strip .btn-primary {
  background: #0B1220;
  color: #F8FAFC;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0B1220;
  color: #F8FAFC;
  padding: 16px;
  display: none;
  z-index: 2000;
}
.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.summary-box {
  margin-top: 16px;
}
@media (max-width: 900px) {
  .hero-grid, .pathway-grid, .split-grid, .contact-grid, .service-card, .service-card.reverse {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav {
    position: fixed;
    inset: 0;
    background: #0B1220;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateX(100%);
  }
  .nav-toggle:checked + .burger + .nav {
    transform: translateX(0);
  }
  .burger {
    display: block;
    color: #F8FAFC;
    border: 1px solid #F8FAFC;
    padding: 6px 12px;
    border-radius: 4px;
  }
  .close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    color: #F8FAFC;
  }
}
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 30px;
  }
  .page-hero h1 {
    font-size: 28px;
  }
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}