/* === CSS RESET & NORMALIZE === */
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;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

html {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  color: #243045;
  background: #F5F7FB;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

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

a {
  color: #275481;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #57C3B3;
  outline-offset: 2px;
}
a:hover {
  color: #279184;
  text-decoration: underline;
}

ul, ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}

strong {
  font-weight: 700;
}

::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/* === BRAND ROOT COLORS === */
:root {
  --color-primary: #275481;
  --color-accent: #57C3B3;
  --color-accent-bold: #279184;
  --color-bg: #F5F7FB;
  --color-light: #ffffff;
  --color-dark: #243045;
  --color-secondary: #F5F7FB;
  --radius: 18px;
  --radius-card: 22px;
  --shadow-soft: 0 2px 12px 0 rgba(39,84,129,0.11);
  --shadow-card: 0 4px 20px 0 rgba(39,84,129,0.08);
  --font-headline: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  color: #275481;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.14;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}

p, .body-text {
  color: #243045;
  font-size: 1rem;
  margin-bottom: 16px;
}

.hero-subheadline {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: #275481;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ==== CONTAINER & BASIC STRUCTURE ==== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  width: 100%;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  background: var(--color-light);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  padding: 30px 22px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin: 0 10px 20px 0;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  min-width: 260px;
  max-width: 340px;
  flex: 0 1 320px;
  transition: transform .2s cubic-bezier(.7,1.5,.5,1);
  z-index: 1;
}
.testimonial-card:hover {
  transform: translateY(-7px) scale(1.03) rotate(-1deg);
  box-shadow: 0 10px 28px 0 rgba(39,84,129,0.16);
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 700;
  color: #275481;
}
.testimonial-rating img {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 2px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 28px 24px 24px 24px;
  min-width: 240px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, transform .18s;
  z-index: 1;
}
.feature-item h3 {
  color: var(--color-accent-bold);
  text-shadow: .5px 2px 0px #E9F7F6;
  font-size: 1.22rem;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 7px;
  filter: drop-shadow(0 2px 8px rgba(87,195,179,0.13));
  background: #e9f7f6;
  border-radius: 50%;
  padding: 8px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 10px 28px 0 rgba(87,195,179,0.19);
  transform: translateY(-4px) scale(1.03) rotate(-2deg);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

/* ==== HERO SECTION ==== */
.hero-section {
  background: linear-gradient(120deg, #e8f9f6 0%, #F4F7FB 90%);
  padding: 66px 20px 56px 20px;
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: flex;
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  max-width: 720px;
}
.hero-section h1 {
  color: #234a75;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 2.5rem;
  text-shadow: 2px 6px 0 #d6f5f0, 0 2px 8px rgba(87,195,179,0.13);
  letter-spacing: 0.03em;
}
.hero-section .cta-primary {
  margin-top: 10px;
}

/* ==== SECTION PATTERNS ==== */
.features-section,
.values-section,
.courses-section,
.pricing-section,
.policy-section,
.about-section,
.contact-section,
.faq-section,
.team-section {
  background: var(--color-secondary);
  border-radius: var(--radius-card);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.courses-section .feature-grid {
  margin-bottom: 12px;
}

.cta-section, .cta-secondary-section {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-card);
  margin-bottom: 40px;
  padding: 40px 20px;
  box-shadow: 0 2px 20px 0 rgba(87,195,179,.09);
  text-align: center;
  align-items: center;
}
.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 16px;
  text-shadow: 1px 6px 11px #3d8276;
}
.cta-section .cta-primary {
  margin: 0 auto;
  margin-top: 18px;
}

/* ==== CARD & TESTIMONIALS ==== */
.card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 30px 22px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonials-section {
  background: #f9fafc;
  padding: 44px 0;
  margin-bottom: 56px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.testimonial-card p {
  color: #234a75;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 8px;
}

/* ==== FAQ ==== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 24px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px 18px;
  margin-bottom: 8px;
  transition: box-shadow .16s;
}
.faq-item h3 {
  font-family: var(--font-headline);
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.faq-item p{
  color: #29527c;
}
.faq-item:hover {
  box-shadow: 0 7px 18px rgba(39,84,129,0.12);
}
.faq-search-box {
  margin-bottom: 24px;
}
.faq-search-box input {
  border: 2px solid #dce6ed;
  border-radius: 99px;
  padding: 12px 20px;
  font-size: 1rem;
  width: 100%;
  font-family: inherit;
  background: #fff;
  transition: border .18s;
}
.faq-search-box input:focus {
  border-color: #57C3B3;
  outline: none;
}

/* ==== PRICING CARDS ==== */
.pricing-section .feature-grid {
  margin-bottom: 36px;
}
.pricing-section .feature-item {
  background: #eaf8f5;
  box-shadow: 0 2px 12px rgba(87, 195, 179, 0.06);
  border: 2.5px solid #57C3B3;
  min-width: 250px;
  max-width: 330px;
  flex: 1 1 290px;
  transition: border-color 0.2s, transform 0.14s;
}
.pricing-section .feature-item h3 {
  color: #275481;
  font-size: 1.17rem;
}
.pricing-section .feature-item .price {
  background: #279184;
  color: #fff;
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 1.26rem;
  font-weight: bold;
  margin-top: 16px;
  box-shadow: 0 2px 10px 0 rgba(39,145,132,0.15);
  letter-spacing: 0.02em;
  display: inline-block;
}
.pricing-section .feature-item:hover {
  border-color: #279184;
  transform: translateY(-6px) scale(1.035);
}

/* ==== BUTTONS ==== */
.cta-primary, .cta-secondary, .cookie-btn, .cookie-modal-btn {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 99px;
  padding: 13px 38px;
  box-shadow: 0 3px 13px rgba(87,195,179,0.13);
  cursor: pointer;
  display: inline-block;
  text-align: center;
  margin-top: 10px;
  transition: background .22s, color .22s, transform .18s;
  letter-spacing: 0.03em;
}
.cta-primary {
  background: linear-gradient(90deg,#57C3B3 65%,#279184 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(39,145,132,0.18);
}
.cta-primary:hover, .cta-primary:focus {
  background: #279184;
  color: #fff;
  transform: scale(1.045) rotate(-0.5deg);
}

.cta-secondary {
  background: #fff;
  color: #279184;
  border: 2.2px solid #279184;
  box-shadow: 0 2px 10px 0 rgba(87, 195, 179, 0.15);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #d3f8f2;
  color: #275481;
  border-color: #57C3B3;
  transform: scale(1.045);
}

.button, .cookie-btn, .cookie-modal-btn {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  border-radius: 99px;
  padding: 12px 28px;
  font-family: var(--font-headline);
  font-weight: 600;
  cursor: pointer;
  margin-right: 12px;
  margin-top: 6px;
  border: none;
  transition: background .19s, color .19s, transform .12s;
}
.button:focus, .cookie-btn:focus {
  outline: 2px solid #279184;
  outline-offset: 2px;
}

/* ==== HEADER === */
header {
  background: #fff;
  box-shadow: 0 2px 14px rgba(39,84,129,0.06);
  height: 70px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100vw;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo-link img {
  height: 38px;
  width: auto;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-left: 26px;
}
.main-nav a {
  font-family: var(--font-headline);
  font-size: 1rem;
  color: #275481;
  padding: 6px 14px;
  border-radius: 99px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background .17s, color .17s;
}
.main-nav a:hover {
  color: #279184;
  background: #e9f7f6;
}

header .cta-primary {
  margin-left: 32px;
  font-size: 1rem;
  padding: 10px 20px;
}

.mobile-menu-toggle {
  background: #57C3B3;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  border-radius: 99px;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  box-shadow: 0 2px 10px rgba(87,195,179,0.15);
  cursor: pointer;
  transition: background .18s, color .18s;
  z-index: 102;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #279184;
}

/* ==== MOBILE NAVIGATION OVERLAY ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.6,1.4,.4,1);
  box-shadow: -7px 0 18px 0 rgba(39,84,129,0.14);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #f7fafc;
  color: #279184;
  font-size: 2.1rem;
  border: none;
  border-radius: 99px;
  width: 54px;
  height: 54px;
  align-self: flex-end;
  margin: 25px 16px 10px 0;
  box-shadow: 0 2px 10px rgba(87,195,179,0.12);
  cursor: pointer;
  transition: background .18s, color .18s;
  z-index: 2050;
}

.mobile-nav {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 40px;
}
.mobile-nav a {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  color: #275481;
  line-height: 2.4rem;
  padding: 13px 0;
  border-radius: 99px;
  font-weight: 700;
  transition: background .13s, color .14s;
  width: 100%;
  text-align: left;
  outline: none;
}
.mobile-nav a:focus {
  outline: 2px solid #279184;
}
.mobile-nav a:hover {
  background: #d3f8f2;
  color: #279184;
}

/* ==== FOOTER ==== */
footer {
  background: #275481;
  color: #fff;
  padding: 50px 0 28px 0;
  width: 100%;
}
footer p {
  color: white;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-brand img {
  width: 48px;
  margin-bottom: 8px;
  display: block;
}
.footer-brand p {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1rem;
  color: #dffaf5;
  letter-spacing: 0.02em;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #eef6fa;
  font-size: 1rem;
  font-family: var(--font-headline);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color .16s;
}
.footer-nav a:hover {
  color: #57C3B3;
}
.footer-contact {
  font-size: 0.99rem;
  color: #e2eaf1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: text-top;
}

/* ==== MAP SNIPPET IN CONTACT ==== */
.map-snippet {
  background: #e9f7f6;
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 16px;
  font-size: 1rem;
  color: #29527c;
}
.map-snippet img {
  width: 20px;
  margin-right: 6px;
  vertical-align: middle;
}

/* ==== THANK YOU PAGE ==== */
.thank-you-section {
  background: #fff;
  border-radius: var(--radius-card);
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 2px 12px rgba(39, 84, 129, 0.06);
  padding: 50px 20px;
}
.thank-you-section .confirmation-message {
  font-size: 1.1rem;
  color: #279184;
  margin-bottom: 20px;
  font-family: var(--font-headline);
  font-weight: 600;
}
.next-steps-info {
  margin-bottom: 30px;
}

/* ==== POLICY SECTION ==== */
.policy-section .text-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 18px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
}
.policy-section h1, .policy-section h2 {
  color: #279184;
}
.policy-section h2 {
  font-size: 1.23rem;
  margin-top: 20px;
  margin-bottom: 12px;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  min-height: 0;
  background: #ffffff;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  box-shadow: 0 -4px 32px rgba(39,84,129,0.16);
  padding: 32px 22px 24px 22px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  z-index: 4000;
  gap: 34px;
  transition: transform .4s cubic-bezier(.58,1.5,.41,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner__text {
  flex: 2 1 320px;
  color: #275481;
  font-size: 1rem;
}
.cookie-banner__actions {
  flex: 1 1 220px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-end;
  justify-content: flex-end;
}
.cookie-btn {
  background: #279184;
  color: #fff;
  border: none;
  font-family: var(--font-headline);
  font-size: 1rem;
  padding: 11px 24px;
  border-radius: 99px;
  box-shadow: 0 2px 9px rgba(87,195,179,0.13);
  margin: 0 6px 0 0;
  transition: background .18s, color .14s, transform .18s;
}
.cookie-btn.cookie-reject {
  background: #fbeef1;
  color: #f2518d;
  border: 1.3px solid #f2518d;
}
.cookie-btn.cookie-settings {
  background: #fff;
  color: #279184;
  border: 1.6px solid #279184;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #57C3B3;
  color: #fff;
  transform: scale(1.05);
}
.cookie-btn.cookie-reject:hover, .cookie-btn.cookie-reject:focus {
  background: #fbd3e2;
  color: #eb397a;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #e9f7f6;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,84,129,0.12);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s;
}
.cookie-modal.show {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal__content {
  background: #fff;
  border-radius: 22px;
  padding: 46px 30px 28px 30px;
  min-width: 310px;
  max-width: 97vw;
  box-shadow: 0 2px 30px 0 rgba(39,84,129,0.24);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  right: 22px; top: 19px;
  background: none;
  border: none;
  color: #279184;
  font-size: 2rem;
  cursor: pointer;
  transition: color .1s;
}
.cookie-modal__close:hover { color: #f2518d; }
.cookie-modal__title {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  color: #279184;
  font-weight: 700;
  margin-bottom: 9px;
}
.cookie-modal__group {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal__category-label {
  font-family: var(--font-headline);
  font-size: 1rem;
  color: #275481;
  font-weight: 600;
}
.cookie-modal__toggle {
  width: 44px;
  height: 24px;
  appearance: none;
  background: #d3f8f2;
  border-radius: 44px;
  position: relative;
  transition: background .14s;
  outline: none;
  cursor: pointer;
}
.cookie-modal__toggle:checked {
  background: #57C3B3;
}
.cookie-modal__toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left .17s;
  box-shadow: 0 2px 7px #bcc;
}
.cookie-modal__toggle:checked:before {
  left: 23px;
}
.cookie-modal-btn {
  background: #279184;
  color: #fff;
  font-size: 1rem;
  padding: 11px 28px;
  margin: 14px 0 0 0;
}
.cookie-modal-btn:hover, .cookie-modal-btn:focus {
  background: #57C3B3;
  color: #fff;
  transform: scale(1.04);
}

/* ==== ANIMATIONS ==== */
@keyframes popin {
  0% { transform: scale(0.95); opacity: 0.4; }
  80% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes rise-fade-in {
  0% { transform: translateY(42px); opacity: 0; }
  85% { transform: translateY(-4px); opacity: 1; }
  100% { transform: translateY(0px); opacity: 1; }
}
.hero-section h1, .hero-section .cta-primary {
  animation: popin 0.9s cubic-bezier(.53,.9,.57,1.12);
}
.feature-item, .testimonial-card {
  animation: rise-fade-in 1s cubic-bezier(.49,1.25,.2,1);
}

/* ==== PLAYFUL / DYNAMIC EFFECTS ==== */
.feature-item, .testimonial-card, .card {
  border: 2.5px solid #eaf8f5;
  box-shadow: 0 4px 18px 0 rgba(87,195,179,0.06);
  /* fun inner border effect */
}
.feature-item:after {
  content: '';
  position: absolute;
  top: -6px; right: -6px;
  width: 46px; height: 22px;
  border-radius: 22px 0 22px 0;
  background: #57C3B3;
  opacity: .09;
  pointer-events: none;
  z-index: 0;
  transform: rotate(32deg);
}

.testimonial-card:before {
  content: '';
  position: absolute;
  left: -9px; bottom: -9px;
  width: 33px; height: 20px;
  border-radius: 0 22px 22px 0;
  background: #279184;
  opacity: .08;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-18deg);
}

/* Fun wiggly underline for h2 on hover */
h2:hover {
  text-decoration: underline wavy #57C3B3 3px;
  background: #E9F7F6;
  border-radius: 12px;
  padding: 3px 8px;
  cursor: pointer;
  transition: background .14s;
}

/* Fun font for tagline */
.footer-brand p {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.045em;
  font-size: 1.04rem;
}

/* ==== RESPONSIVE DESIGN - MOBILE FIRST ==== */

@media (max-width: 1000px) {
  .container {
    max-width: 96vw;
    padding: 0 7vw;
  }
  .main-nav {
    gap: 11px;
    margin-left: 14px;
  }
  footer .container {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .testimonial-slider, .card-container, .content-grid {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .feature-item, .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  header .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    max-width: 100vw;
    padding: 0 2.3vw;
  }
  .content-wrapper {
    gap: 14px;
  }
  .section, .features-section, .values-section, .courses-section,
  .policy-section, .about-section, .contact-section, .faq-section,
  .team-section, .cta-section {
    padding: 28px 3vw;
    margin-bottom: 28px;
  }
  .hero-section {
    padding: 34px 3vw 34px 3vw;
    margin-bottom: 20px;
  }
  .hero-section h1 { font-size: 2rem; }

  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .cta-primary {
    display: none;
  }
  /* Mobile menu full screen */
  .mobile-menu {
    padding-top: 10vh;
  }
  .mobile-menu .mobile-nav {
    gap: 12px;
    padding: 0 18px;
  }
  .mobile-nav a {
    font-size: 1.12rem;
    padding: 12px 0 12px 3vw;
  }
  footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
  }
  .footer-brand,
  .footer-nav,
  .footer-contact {
    margin-bottom: 18px;
  }
  .testimonial-slider, .feature-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card,
  .feature-item {
    max-width: 100%;
    min-width: 0;
    flex-basis: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .policy-section .text-section,
  .faq-item {
    padding: 16px 10px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 22px 6vw 22px 6vw;
  }
  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
  }
  .cookie-modal__content {
    padding: 29px 6vw 24px 6vw;
    min-width: 0;
  }
}

@media (max-width: 530px) {
  html { font-size: 14px; }
  .hero-section, .section, .features-section, .cta-section, .policy-section,
  .about-section, .contact-section, .faq-section, .team-section {
    padding: 17px 2vw;
    margin-bottom: 10px;
  }
  .testimonial-card, .feature-item, .card {
    padding: 16px 8px;
  }
  .footer-brand img {
    width: 40px;
  }
  .cookie-banner {
    padding: 16px 3vw 12px 3vw;
  }
}

/* ==== Z-INDEX ==== */
header { z-index: 30; }
.mobile-menu { z-index: 1500; }
.cookie-banner { z-index: 4000; }
.cookie-modal { z-index: 4100; }

/* ==== UTILITY CLASSES ==== */
.align-center { align-items: center !important; }
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.text-center { text-align: center !important; }

/* ==== PLAYFUL DYNAMIC @ IMPORTS (font display fallback) ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* === END OF CSS === */
