/* -------------------------
  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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #F8FAFC;
  color: #294366;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

/* -------------------------
  SOFT PASTEL COLOR SCHEME
-------------------------- */
:root {
  --primary: #1C466A;
  --secondary: #F4F7FA;
  --accent: #FFC857;
  --pastel-blue: #C3DDFD;
  --pastel-mint: #CAE9E6;
  --pastel-pink: #F5D4E6;
  --pastel-yellow: #FFF6D1;
  --soft-gray: #ECF2F7;
  --white: #fff;
  --text-dark: #294366;
  --text-light: #7D8CA4;
  --shadow-pastel: 0 4px 16px rgba(76, 65, 163, 0.07);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* -------------------------
  TYPOGRAPHY
-------------------------- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--secondary);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, li {
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 10px;
}
strong {
  color: var(--primary);
}
.subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* -------------------------
  LAYOUT CONTAINERS
-------------------------- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------------
  HEADER & MAIN NAVIGATION
-------------------------- */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(50,80,140,0.04);
  position: sticky;
  top: 0;
  z-index: 31;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.logo {
  margin-right: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav > a {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 6px 13px;
  border-radius: var(--radius-sm);
  color: var(--primary);
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav > a:not(.button-primary):hover, .footer-menu a:hover {
  background: var(--pastel-mint);
  color: var(--primary);
}
.main-nav .button-primary {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 6px 25px;
  margin-left: 10px;
  box-shadow: 0 2px 6px rgba(255,200,87,0.14);
  transition: background 0.18s, box-shadow 0.18s, color 0.15s;
}
.main-nav .button-primary:hover,
.button-primary:hover {
  background: #ffe08c;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(255,200,87,0.19);
}

/* -------------------------
  MOBILE MENU
-------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: var(--primary);
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 99;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ffe08c;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: linear-gradient(120deg, var(--pastel-blue) 70%, var(--pastel-pink) 100%);
  box-shadow: 0 8px 32px rgba(31,73,125,0.24);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.45,.09,.43,1.01);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--pastel-pink);
  color: var(--primary);
  border-radius: 50%;
  font-size: 2rem;
  margin: 18px 25px 0 0;
  width: 44px;
  height: 44px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover { background: var(--accent); color: var(--primary); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary);
  padding: 10px 28px;
  border-radius: var(--radius-md);
  background: transparent;
  transition: background 0.19s, color 0.12s;
}
.mobile-nav a:hover {
  background: var(--pastel-yellow);
  color: var(--primary);
}

/* -------------------------
  HERO SECTION
-------------------------- */
.hero {
  background: linear-gradient(120deg, var(--pastel-blue) 78%, var(--pastel-mint) 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  min-height: 295px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 52px 0 54px 0;
  box-shadow: var(--shadow-pastel);
}
.hero .content-wrapper {
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  max-width: 600px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.4rem;
  margin-bottom: 2px;
}
.hero .subtitle {
  font-size: 1.17rem;
  color: var(--text-light);
}

/* -------------------------
  BUTTONS
-------------------------- */
.button-primary {
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-display);
  border-radius: var(--radius-md);
  border: none;
  padding: 10px 34px;
  font-weight: bold;
  font-size: 1.12rem;
  box-shadow: 0 3px 16px rgba(255,200,87,0.14);
  transition: background 0.20s, color 0.13s, box-shadow 0.19s, transform 0.09s;
  cursor: pointer;
  margin-top: 4px;
}
.button-primary:active { transform: scale(0.97); }

.button-secondary {
  background: var(--pastel-blue);
  color: var(--primary);
  font-family: var(--font-display);
  border-radius: var(--radius-sm);
  border: none;
  padding: 10px 32px;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 2px 7px rgba(66, 166, 255, 0.12);
  transition: background 0.19s, color 0.16s, box-shadow 0.16s;
  margin-top: 4px;
  cursor: pointer;
}
.button-secondary:hover, .button-secondary:focus {
  background: #afe1fe;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(66, 166, 255, 0.16);
}
.button-primary:focus, .button-secondary:focus {
  outline: 2px dotted var(--primary);
}

/* Button reset for filter/topic/step buttons */
.filter button, .topic-filter button {
  font-family: var(--font-display);
  background: var(--pastel-mint);
  color: var(--primary);
  border-radius: var(--radius-sm);
  padding: 6px 18px;
  border: none;
  margin-right: 6px;
  font-size: 1rem;
  margin-bottom: 8px;
  transition: background 0.16s, color 0.14s;
}
.filter button:hover,
.topic-filter button:hover {
  background: var(--accent);
  color: var(--primary);
}

/* -------------------------
  FEATURES SECTION
-------------------------- */
.features {
  background: var(--pastel-mint);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(102, 217, 192, 0.10);
  padding: 28px 20px 22px 20px;
  min-width: 220px;
  max-width: 255px;
  flex: 1 1 230px;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.16s, transform 0.12s;
}
.feature-item:hover {
  box-shadow: 0 8px 26px rgba(72,195,210,.21);
  transform: translateY(-2px) scale(1.03);
}
.feature-item img {
  height: 46px;
  width: 46px;
  margin-bottom: 8px;
  border-radius: 12px;
  background: var(--pastel-pink);
  padding: 5px;
}

/* -------------------------
  SERVICE CARDS
-------------------------- */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: space-between;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pastel);
  flex: 1 1 270px;
  min-width: 230px;
  max-width: 320px;
  padding: 28px 24px 24px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.13s;
  align-items: flex-start;
}
.service-card:hover {
  box-shadow: 0 8px 26px rgba(250,213,230,.18);
  transform: translateY(-2px) scale(1.02);
}
.service-card .price {
  color: var(--primary);
  background: var(--pastel-yellow);
  border-radius: var(--radius-sm);
  padding: 5px 18px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* -------------------------
  COURSE LIST
-------------------------- */
.course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.course-item {
  flex: 1 1 260px;
  background: var(--pastel-pink);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 14px rgba(228,90,180,.08);
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.16s, transform 0.11s;
}
.course-item:hover {
  box-shadow: 0 10px 24px rgba(228,90,180,.13);
  transform: translateY(-2px) scale(1.01);
}

/* -------------------------
  BLOG LIST
-------------------------- */
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 25px;
}
.post-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(190,200,250,0.08);
  padding: 23px 19px 20px 19px;
  margin-bottom: 20px;
  flex: 1 1 250px;
  max-width: 300px;
  transition: box-shadow 0.13s, transform 0.13s;
}
.post-item:hover {
  box-shadow: 0 6px 18px rgba(145,186,255,0.13);
  transform: translateY(-2px) scale(1.04);
}

/* -------------------------
  TESTIMONIALS
-------------------------- */
.testimonials, .testimonials-main {
  background: var(--pastel-blue);
  border-radius: var(--radius-lg);
  padding: 40px 20px 36px 20px;
  margin-bottom: 60px;
}
.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(32,70,130,0.07);
  align-items: flex-start;
  flex: 1 1 290px;
  min-width: 240px;
  max-width: 350px;
  margin-bottom: 20px;
  padding: 25px 20px 20px 20px;
  color: var(--text-dark);
  font-size: 1.1rem;
  transition: box-shadow 0.14s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(44,164,190,0.16);
  transform: scale(1.03);
}
.testimonial-card p, .testimonial-card blockquote {
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 14px;
}
.testimonial-name {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.98rem;
  font-style: normal;
}

/* Success Stories */
.success-stories {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.story {
  background: var(--pastel-yellow);
  border-radius: var(--radius-sm);
  padding: 19px 20px 15px 20px;
  box-shadow: 0 1px 7px rgba(251,230,145, 0.10);
  color: var(--primary);
}
.story h3 { color: var(--primary); margin-bottom: 6px; font-size: 1.12rem; }
.story p { color: var(--text-dark); margin-bottom: 0; }

/* Partner Logos */
.partner-logos .logo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-top: 16px;
}
.partner-logos .logo-list img {
  max-height: 50px;
  opacity: .83;
  border-radius: var(--radius-md);
  background: var(--pastel-mint);
  padding: 8px 14px;
  transition: opacity .2s;
}
.partner-logos .logo-list img:hover {
  opacity: 1;
}

/* -------------------------
  FAQ
-------------------------- */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 25px;
}
.faq-item {
  flex: 1 1 280px;
  background: var(--soft-gray);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(52, 74, 162, 0.03);
  padding: 18px 16px 16px 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.13s;
  cursor: pointer;
}
.faq-item:hover {
  box-shadow: 0 6px 16px rgba(52, 74, 162, 0.09);
  transform: scale(1.02);
}

/* -------------------------
  FOOTER
-------------------------- */
footer {
  background: var(--white);
  border-top: 1px solid var(--soft-gray);
  padding: 0;
  margin-top: 64px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 46px 0 28px 0;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--primary);
}
.footer-brand img {
  max-width: 55px;
  margin-bottom: 7px;
}
.footer-brand a {
  color: var(--primary);
  text-decoration: underline;
}
.footer-brand a:hover { color: #326da8; }
.footer-menu {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
  margin-top: 7px;
}
.footer-menu a {
  color: var(--primary);
  font-size: 1rem;
  font-family: var(--font-display);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  transition: background 0.16s, color 0.13s;
}
.footer-meta {
  flex: 1 1 150px;
  color: var(--text-light);
  font-size: 0.96rem;
  margin-top: 14px;
  text-align: right;
}

/* -------------------------
  FORMS, ADDRESS BLOCKS, MISC
-------------------------- */
.address-block, .map-embed {
  background: var(--pastel-mint);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  margin-bottom: 18px;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(48,168,130,0.06);
}
.text-section {
  margin-bottom: 18px;
}

/* About/USP Values */
.core-values {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 16px 0 0 0;
}
.core-values li {
  background: var(--pastel-yellow);
  color: var(--primary);
  border-radius: var(--radius-sm);
  padding: 7px 17px;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1rem;
}

/* Step List */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.step-list li {
  padding-left: 12px;
  position: relative;
}
.step-list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

/* -------------------------
  SECTION & CARD SPACING
-------------------------- */
/* Already covered by .section, .card, .card-container, etc. */

/* -------------------------
  ANIMATIONS & INTERACTIONS
-------------------------- */
.card, .feature-item, .testimonial-card, .service-card,
.post-item, .course-item, .faq-item {
  transition: box-shadow 0.16s, transform 0.13s, background 0.13s;
}
.button-primary, .button-secondary {
  transition: background 0.18s, color 0.13s, box-shadow 0.19s, transform 0.09s;
}

/* Hover on .section link CTAs */
.section a.button-primary:not(.active):hover {
  background: #ffe08c;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(255,200,87,0.19);
}

/* -------------------------
  COOKIE CONSENT BANNER
-------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  background: var(--white);
  box-shadow: 0 -2px 20px rgba(38,80,141,0.08);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.35s, transform 0.35s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner p {
  color: var(--primary);
  text-align: center;
  font-size: 1rem;
  margin: 0 0 6px 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-actions button {
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.97rem;
  padding: 8px 24px;
  border: none;
  margin: 0 2px;
  background: var(--pastel-blue);
  color: var(--primary);
  transition: background .15s, color .13s, box-shadow .13s;
  box-shadow: 0 1px 6px rgba(187,198,255,0.10);
}
.cookie-banner .cookie-actions .cookie-accept {
  background: var(--accent);
  color: var(--primary);
  font-weight: bold;
}
.cookie-banner .cookie-actions .cookie-accept:hover { background: #ffe08c; }
.cookie-banner .cookie-actions .cookie-reject { background: var(--pastel-pink); color: var(--primary); }
.cookie-banner .cookie-actions .cookie-reject:hover { background: var(--pastel-yellow); }
.cookie-banner .cookie-actions .cookie-settings { background: var(--pastel-mint); color: var(--primary); }
.cookie-banner .cookie-actions .cookie-settings:hover { background: #afe1fe; }

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 9100;
  background: rgba(80, 140, 180, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal .modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 36px rgba(33, 69, 103, 0.16);
  padding: 36px 20px 23px 20px;
  min-width: 308px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
  animation: fadeInUp 0.29s cubic-bezier(.73,.05,.49,1.05);
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
  background: var(--pastel-blue);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  margin-bottom: 8px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 6px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  font-family: var(--font-display);
  font-size: 0.96rem;
  border-radius: var(--radius-sm);
  padding: 7px 20px;
  border: none;
  transition: background 0.15s, color 0.13s;
  box-shadow: 0 1px 7px rgba(214,232,250,0.08);
}
.cookie-modal .cookie-modal-actions .cookie-save {
  background: var(--accent);
  color: var(--primary);
  font-weight: bold;
}
.cookie-modal .cookie-modal-actions .cookie-save:hover {
  background: #ffe08c;
}
.cookie-modal .cookie-modal-actions .cookie-cancel {
  background: var(--pastel-mint);
  color: var(--primary);
}
.cookie-modal .cookie-modal-actions .cookie-cancel:hover {
  background: var(--pastel-yellow);
}

/* -------------------------
  MEDIA QUERIES RESPONSIVE
-------------------------- */
@media (max-width: 1150px) {
  .container { max-width: 1000px; }
}
@media (max-width: 1000px) {
  header .container,
  .content-wrapper, .footer-flex,
  .features .feature-grid,
  .service-cards, .course-list, .post-list, .testimonial-slider, .testimonial-grid, .faq-list, .partner-logos .logo-list {
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .footer-flex { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; margin: 0 0 0 0; }
}
@media (max-width: 768px) {
  :root { font-size: 15px; }
  header .container { flex-wrap: wrap; padding: 11px 13px; }
  .main-nav { display: none !important; }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .footer-flex { flex-direction: column; gap: 18px; padding: 24px 0 22px 0; }
  .hero { border-radius: 0 0 var(--radius-md) var(--radius-md); min-height: 150px; padding: 33px 0 30px 0; }
  .features { border-radius: var(--radius-md); }
  .testimonial-card, .service-card, .course-item, .post-item, .faq-item, .feature-item, .story {
    min-width: 0;
    max-width: 100%;
    padding-left: 11px; padding-right: 11px;
  }
  .service-cards, .course-list, .feature-grid, .post-list, .faq-list { flex-direction: column; }
  .success-stories { margin-top: 29px; gap: 14px; }
  .partner-logos .logo-list { gap: 14px; }
  .address-block, .map-embed { padding: 10px 7px; }
  .core-values { gap: 7px; }
}
@media (max-width: 600px) {
  :root { font-size: 14px; }
  .container { padding: 0 7px; }
  .section, .features, .testimonials, .testimonials-main, .about-intro, .usp, .cookie-banner .modal-content {
    padding: 24px 7px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.1rem; }
}
@media (max-width: 480px) {
  .cookie-modal .modal-content { padding: 15px 3px 11px 3px; min-width: 0; }
  .mobile-menu-close { margin: 13px 10px 0 0; }
}

/* -------------------------
  GENERAL UTILITY CLASSES
-------------------------- */
.mt-0 {margin-top: 0 !important;}
.mt-2 {margin-top: 2px !important;}
.mt-10 {margin-top: 10px !important;}
.mb-0 {margin-bottom: 0 !important;}
.mb-10 {margin-bottom: 10px !important;}
.text-center{text-align: center!important;}

/* -------------------------
  CUSTOM CLASSES BY PAGE
-------------------------- */
/* /: .hero, .features, .cta-next-steps, etc. handled above */

/* ueber-uns.html: Team */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.team-member {
  background: var(--pastel-blue);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(120,184,255,0.11);
  padding: 19px 14px 16px 15px;
  margin-bottom: 17px;
  flex: 1 1 200px;
  min-width: 180px;
  max-width: 280px;
  font-family: var(--font-body);
  transition: box-shadow 0.12s, transform 0.11s;
}
.team-member:hover {
  box-shadow: 0 6px 22px rgba(40, 160, 250, 0.19);
  transform: scale(1.02);
}
.team-member h3 { color: var(--primary); font-size: 1.08rem; margin-bottom: 6px; }
.team-member p { margin-bottom: 0; }

/* usp, about-intro already styled */

/* kontakt.html */
.contact-info .content-wrapper {
  gap: 18px;
}
.address-block a {
  color: var(--primary);
  text-decoration: underline;
}
.address-block a:hover { color: #2187aa; }

/* thank-you */
.thank-you .content-wrapper { align-items: center; gap: 22px; }
.thank-you p { text-align: center; max-width: 400px; }

/* privacy-policy, gdpr-info, terms-of-service, cookie-policy */
.privacy-policy, .gdpr-info, .terms-of-service, .cookie-policy {
  background: var(--soft-gray);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  padding: 40px 20px 30px 20px;
}
.privacy-policy h2, .terms-of-service h2, .cookie-policy h2 { color: var(--primary); font-size: 1.14rem; margin-top: 12px; margin-bottom: 7px; }

/* CTA Sections */
.cta-next-steps, .services-cta, .course-process, .contact-cta, .blog-cta {
  background: var(--pastel-mint);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  margin-bottom: 60px;
  text-align: center;
}
.cta-next-steps h2, .services-cta h2, .course-process h2, .contact-cta h2, .blog-cta h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 22px;
}

/* Hide nav visually offscreen when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}
