/* -------------------
  CSS RESET & BASELINE
------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: #FDF6E3;
  font-size: 16px;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #203453;
  min-height: 100vh;
  background: #FDF6E3;
}
*, *:before, *:after { box-sizing: border-box; }
section, nav, footer, header, main {
  display: block;
}
a {
  color: #203453;
  text-decoration: none;
  transition: color 0.16s cubic-bezier(0.4,0,0.2,1);
}
a:focus { outline: 2px solid #6EC6C5; outline-offset: 2px; }
strong { font-weight: bold; }
ul, ol {
  margin-left: 24px;
  padding-left: 0;
}
img { display: block; max-width: 100%; height: auto; }

/* ---------------------------
   TYPOGRAPHY (GEOMETRIC)
--------------------------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #203453;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.12;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1.18;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 6px;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #203453;
}

/* Geometric underlines for section headings */
h2, h1 {
  position: relative;
}
h2:not(.no-deco):after, h1:not(.no-deco):after {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  background: #6EC6C5;
  margin-top: 12px;
  border-radius: 1px;
}

/* ----------------------
   CONTAINER & GRID
---------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
}

/* Spacing & Section rules */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----------------------
   HEADER & NAVIGATION
---------------------- */
header {
  background: #203453;
  padding: 0;
  border-bottom: 4px solid #6EC6C5;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding-top: 0;
  padding-bottom: 0;
}
.logo img, footer .logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #FDF6E3;
  padding: 8px 0;
  border-radius: 4px;
  position: relative;
}
.main-nav a.active, .main-nav a:focus {
  color: #6EC6C5;
  background: none;
}
.main-nav a.btn-primary {
  margin-left: 18px;
}
.main-nav a:hover:not(.btn-primary) {
  color: #6EC6C5;
  text-decoration: underline solid #6EC6C5 2px;
}
/* Hamburger */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #FDF6E3;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 102;
}
.mobile-menu-toggle:focus { outline: 2px solid #6EC6C5; }

/* ----------------------
   MOBILE NAVIGATION
---------------------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #203453;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
  flex-direction: column;
  padding-top: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  margin: 24px 24px 0 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 40px auto auto auto;
  align-items: center;
  width: 100%;
}
.mobile-nav a {
  color: #FDF6E3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border-radius: 4px;
  transition: background 0.18s, color 0.16s;
  width: 100%;
  text-align: center;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #6EC6C5;
  color: #203453;
}

/* Burger button visible on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ----------------------
   BUTTONS & INTERACTIONS
---------------------- */
.btn-primary, a.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: #6EC6C5;
  color: #203453 !important;
  padding: 12px 32px;
  border-radius: 8px;
  border: 2px solid #6EC6C5;
  box-shadow: 0 2px 12px rgba(32,52,83,0.08);
  cursor: pointer;
  transition: background 0.19s, color 0.15s, box-shadow 0.19s, border-color 0.15s;
  position: relative;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background: #203453;
  color: #FDF6E3 !important;
  border-color: #203453;
  box-shadow: 0 6px 16px rgba(32,52,83,0.13);
}

/* Secondary/utility */
.btn-secondary {
  background: transparent;
  color: #203453;
  border: 2px solid #203453;
  border-radius: 8px;
  padding: 11px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.14s, color 0.13s, border-color 0.14s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #203453;
  color: #FDF6E3;
}

/* ----------------------
   HERO SECTIONS
---------------------- */
.hero {
  width: 100%;
  background: #203453;
  color: #FDF6E3;
  padding: 64px 0 48px 0;
  border-radius: 0 0 68px 68px;
  box-shadow: 0 6px 28px -10px rgba(32,52,83,0.11);
  margin-bottom: 48px;
}
.hero h1, .hero h2, .hero h3, .hero p {
  color: #FDF6E3;
}
.hero .btn-primary {
  background: #6EC6C5;
  color: #203453;
  border-color: #6EC6C5;
  margin-top: 24px;
}
.hero .btn-primary:hover {
  background: #FDF6E3;
  color: #203453 !important;
  border-color: #FDF6E3;
}

/* ----------------------
   STRUCTURED FLEX ZONES
---------------------- */
.features .feature-grid, .services .course-categories-grid,
.benefits .benefit-icons-grid, .steps .step-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  margin-bottom: 18px;
}
.feature-item, .course-category, .benefit-item, .step-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(32,52,83,0.05);
  padding: 28px 22px;
  flex: 1 1 220px;
  min-width: 260px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2.5px solid #EBEFE6;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.feature-item img, .course-category img, .benefit-item img, .step-card img {
  height: 45px;
  width: 45px;
  aspect-ratio: 1/1;
  margin-bottom: 10px;
  border-radius: 8px;
  background: #FDF6E3;
  padding: 8px;
  box-shadow: 0 2px 9px rgba(110,198,197,0.08);
}
.feature-item:hover, .course-category:hover, .benefit-item:hover, .step-card:hover {
  border-color: #6EC6C5;
  box-shadow: 0 8px 32px -6px rgba(32,52,83,0.13);
}

/* "Card" lists (Blog, Testimonials, FAQ, etc) */
.blog-post-list, .testimonial-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  margin-bottom: 18px;
}
.blog-post, .testimonial-card, .faq-item {
  background: #fff;
  border-radius: 14px;
  border: 2px solid #EBEFE6;
  box-shadow: 0 2.5px 12px rgba(32,52,83,0.08);
  padding: 26px 22px 22px;
  min-width: 260px;
  flex: 1 1 315px;
  transition: box-shadow 0.19s, border-color 0.15s;
}
.blog-post:hover, .testimonial-card:hover, .faq-item:hover {
  border-color: #6EC6C5;
  box-shadow: 0 10px 30px -8px rgba(32,52,83,0.14);
}

/* FAQ title geometric mark */
.faq-item h3 {
  position: relative;
  padding-left: 18px;
  font-size: 1.17rem;
}
.faq-item h3:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #6EC6C5;
  display: inline-block;
  position: absolute;
  left: 0; top: 6px;
  border-radius: 2px;
  transform: rotate(45deg);
}

/* ----------------------
   TESTIMONIALS AREA
---------------------- */
.testimonial-list {
  width: 100%;
  justify-content: flex-start;
  align-items: stretch;
}
.testimonial-card {
  background: #FDF6E3;
  border: 2px solid #6EC6C5;
  color: #203453;
  border-radius: 18px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-height: 120px;
  box-shadow: 0 6px 20px -8px rgba(32,52,83,0.18);
  font-size: 1rem;
  position: relative;
  transition: box-shadow 0.17s, border-color 0.16s;
}
.testimonial-card:hover {
  border-color: #203453;
  box-shadow: 0 18px 40px -14px rgba(32,52,83,0.22);
}
.review-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  display: flex;
  gap: 10px;
  font-weight: 700;
  align-items: center;
}
.testimonial-card p {
  color: #203453;
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 8px;
}

/* ----------------------
   CTA SECTION
---------------------- */
.cta {
  background: #6EC6C5;
  border-radius: 48px;
  margin: 54px auto 48px auto;
  padding: 48px 26px;
  box-shadow: 0 3px 24px rgba(110,198,197,0.07);
  color: #203453;
  text-align: center;
}
.cta h2 {
  color: #203453;
}
.cta .btn-primary {
  margin-top: 20px;
}

/* ----------------------
   FOOTER
---------------------- */
.footer {
  background: #203453;
  color: #FDF6E3;
  padding: 56px 0 28px 0;
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer .logo img {
  height: 36px;
}
.mini-navigation, .legal-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.mini-navigation a, .legal-links a {
  color: #FDF6E3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.14s;
  margin-right: 0;
}
.mini-navigation a:hover, .legal-links a:hover {
  color: #6EC6C5;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.96rem;
  font-weight: 400;
  color: #FDF6E3;
}
.contact-details img {
  vertical-align: baseline;
  margin-right: 7px;
  height: 18px;
  width: 18px;
}
.social-media-links {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.social-media-links a img {
  width: 23px; height: 23px;
  border-radius: 3px;
  transition: box-shadow 0.18s;
}
.social-media-links a:hover img {
  box-shadow: 0 4px 12px rgba(110,198,197,0.19);
}
@media (max-width: 900px) {
  .footer .content-wrapper { flex-direction: column; gap: 20px; }
}

/* ----------------------
   SPECIAL SECTIONS
---------------------- */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1rem;
}
.category-filter a {
  color: #203453;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  padding: 4px 12px;
  border-radius: 8px;
  background: #F0F6F5;
  margin-right: 0;
  transition: background 0.16s, color 0.14s;
}
.category-filter a:hover {
  background: #6EC6C5;
  color: #203453;
}

.featured-posts, .newsletter-benefits, .key-benefits, .progress-tracking-features, .success-stories {
  background: #F8FAF7;
  border-radius: 13px;
  padding: 16px 22px;
  margin-top: 18px;
}
.featured-posts ul, .newsletter-benefits ul, .key-benefits ul, .progress-tracking-features ul, .success-stories ul {
  margin-left: 22px;
  margin-top: 3px;
}
.featured-posts h4, .newsletter-benefits h4, .key-benefits h4, .progress-tracking-features h4, .success-stories h3 {
  margin-bottom: 8px;
}

/* About/contact ul icons */
.about-short ul, .about ul, .team ul, .values ul, .contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-short ul li, .about ul li, .team ul li, .values ul li, .contact ul li {
  position: relative;
  padding-left: 28px;
  font-size: 1.02rem;
  margin-bottom: 0;
  min-height: 24px;
  display: flex;
  align-items: center;
}
.about-short ul li:before, .about ul li:before, .team ul li:before, .values ul li:before, .contact ul li:before {
  content: '';
  display: inline-block;
  background: #6EC6C5;
  width: 13px; height: 13px;
  position: absolute;
  left: 4px; top: 5px;
  border-radius: 2px;
  transform: rotate(30deg);
}
.contact ul img {
  margin-right: 8px;
  margin-left: 0;
  height: 17px;
}

/* Map box in contact section */
.map {
  margin: 24px 0 12px 0;
  background: #F0F6F5;
  border: 2px solid #EBEFE6;
  border-radius: 13px;
  padding: 16px 18px;
}

/* Confirmation page */
.confirmation {
  text-align: center;
  background: #F7FDFA;
  border-radius: 24px;
  margin: 60px 0 60px 0;
  padding: 48px 30px;
}

/* Policy page style */
.policy {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2.5px 14px rgba(32,52,83,0.05);
  padding: 40px 26px;
  margin: 36px 0 60px 0;
}
.policy h1, .policy h2, .policy h3 { color: #203453; }
.policy a { color: #6EC6C5; text-decoration: underline; }

/* ----------------------
   COOKIE CONSENT BANNER
---------------------- */
.cookie-banner {
  position: fixed;
  z-index: 9000;
  left: 0;
  right: 0;
  bottom: 0;
  background: #203453;
  color: #FDF6E3;
  padding: 22px 20px 20px 20px;
  box-shadow: 0 -1.5px 18px -4px rgba(32,52,83,0.13);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 1.04rem;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-btn {
  margin-left: 0;
  margin-right: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  border: 2.2px solid #6EC6C5;
  background: #6EC6C5;
  color: #203453;
  padding: 7px 20px;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, border-color 0.14s;
}
.cookie-banner .cookie-btn.secondary {
  background: transparent;
  color: #6EC6C5;
  border-color: #6EC6C5;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #203453;
  color: #FDF6E3;
}
.cookie-banner .cookie-btn.secondary:hover, .cookie-banner .cookie-btn.secondary:focus {
  background: #FDF6E3;
  color: #203453;
  border-color: #FDF6E3;
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,53,83,0.88);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.32s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #203453;
  border-radius: 26px;
  box-shadow: 0 6px 32px rgba(32,52,83,0.21);
  padding: 34px 28px 18px 28px;
  max-width: 380px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.31rem;
  margin-bottom: 6px;
}
.cookie-option-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-option-toggle {
  width: 42px; height: 22px;
  background: #EBEFE6;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-option-toggle[aria-checked='true'] {
  background: #6EC6C5;
}
.cookie-option-toggle:after {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.5px 8px rgba(32,52,83,0.07);
  position: absolute;
  top: 2px; left: 2px;
  transition: left 0.16s;
}
.cookie-option-toggle[aria-checked='true']:after {
  left: 22px;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  right: 22px; top: 20px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #6EC6C5;
  cursor: pointer;
  z-index: 10;
}
.cookie-modal-content .cookie-btn {
  margin: 0 4px 0 0;
}

/* ----------------------
   RESPONSIVE BREAKPOINTS
---------------------- */
@media (max-width: 1024px) {
  .hero { border-radius: 0 0 50px 50px; }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero { padding: 44px 0 32px 0; }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .content-wrapper { gap: 13px; }
  .section { padding: 24px 7px; margin-bottom: 34px; }
  .hero {
    border-radius: 0 0 30px 30px;
    padding: 32px 0 24px 0;
    margin-bottom: 24px;
  }
  .features .feature-grid, .services .course-categories-grid,
  .benefits .benefit-icons-grid, .steps .step-cards {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .course-category, .benefit-item, .step-card {
    min-width: 98vw;
    width: 100%;
    max-width: 99vw;
  }
  .blog-post-list, .testimonial-list, .faq-list {
    flex-direction: column;
    gap: 15px;
  }
  .cta {
    padding: 30px 8px;
    border-radius: 20px;
    margin: 18px 0 17px 0;
  }
  .policy, .confirmation {
    padding: 20px 6px;
    margin: 20px 0 26px 0;
  }
  .about-short ul li, .about ul li, .team ul li, .values ul li, .contact ul li {
    font-size: 0.98rem;
    padding-left: 19px;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
}
@media (max-width: 480px) {
  .container { padding-left: 3px; padding-right: 3px; }
  .section { padding: 11px 1px; }
  .hero { padding: 14px 0 10px 0; }
  h1 { font-size: 1.41rem; }
  h2 { font-size: 1.18rem; }
}

/* ----------------------
   MICRO-INTERACTIONS
---------------------- */
.btn-primary, .btn-secondary, .cookie-btn, .feature-item, .course-category, .benefit-item, .step-card, .testimonial-card, .blog-post, .faq-item {
  transition: box-shadow 0.18s, border-color 0.17s, background 0.15s, color 0.14s, outline 0.16s;
}

/* Focus style accessibility */
.btn-primary:focus, .btn-secondary:focus, .cookie-btn:focus, .main-nav a:focus, .mini-navigation a:focus, .legal-links a:focus, .mobile-nav a:focus {
  outline: 2px solid #6EC6C5;
  outline-offset: 1.5px;
}

/* Hide outlines except for focus-visible (accessibility) */
:focus:not(:focus-visible) {
  outline: none;
}

/* ---------------
   UTILITY CLASSES
--------------- */
.hide { display: none !important; }
.text-center { text-align: center; }
.w-full { width: 100%; }

/* End of style.css */
