/* ===========================================================
RESET & BASE STYLES
=========================================================== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F7F7;
  color: #2B2D28;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
ol, ul { list-style: none; }
a { 
  text-decoration: none; 
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
:focus-visible {
  outline: 2px solid #23A393;
  outline-offset: 2px;
}

/* ===========================================================
NATURE ORGANIC COLOR PALETTE
=========================================================== */
:root {
  --brand-primary: #133A6D;
  --brand-secondary: #23A393;
  --accent-bg: #F7F7F7;
  --nature-green: #247145;
  --nature-sage: #D9E6DF;
  --nature-earth: #B9905B;
  --nature-terracotta: #AF6A54;
  --text-dark: #213120;
  --text-normal: #2B2D28;
  --card-bg: #FCFCFA;
  --border: #E4E0DA;
  --shadow: 0 4px 20px 0 rgba(38,46,44,0.08);
  --radius-lg: 26px;
  --radius-sm: 14px;
}

/* ========== TYPOGRAPHY HIERARCHY ========== */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--brand-primary);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.18;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--nature-green);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 8px;
  line-height: 1.25;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--nature-green);
}
p, li, td, th {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--text-normal);
  margin-bottom: 8px;
}
small, .small { font-size: 0.95rem; color: #62604A; }
strong { color: var(--brand-secondary); font-weight: 600; }

/* ========== LAYOUT GLOBALS ========== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  position: relative;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
main {
  flex: 1 0 auto;
  background: var(--accent-bg);
}

/* ===========================================================
HEADER & MAIN NAVIGATION
=========================================================== */
header {
  background: #FCFCFA;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 20px;
  gap: 18px;
}
header img {
  height: 48px;
  border-radius: var(--radius-sm);
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--nature-green);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 0;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-secondary);
}
.cta-button.primary {
  background: var(--brand-secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 99px;
  box-shadow: 0 2px 12px 0 rgba(35,163,147,0.08);
  border: none;
  cursor: pointer;
  font-size: 1.07rem;
  margin-left: 8px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.05s;
  display: inline-block;
  text-align: center;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: var(--nature-green);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 18px 0 rgba(35,163,147,0.14);
}
.mobile-menu-toggle {
  display: none;
  background: var(--nature-green);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  transition: background 0.16s, box-shadow 0.19s;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-secondary);
}

/* ========== RESPONSIVE HEADER NAV ========== */
@media (max-width: 1020px) {
  .main-nav {
    gap:18px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap:12px;
    min-height: initial;
  }
  .main-nav {
    gap: 8px;
  }
  .cta-button.primary {
    padding: 9px 14px;
    font-size:1rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ===========================================================
MOBILE NAV MENU
=========================================================== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(36,113,69,0.96);
  box-shadow: 0 12px 66px -10px rgba(36,113,69,0.2);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.57,.21,.69,.8);
  z-index: 130;
  padding: 0 0 128px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 20px 24px 8px 0;
  cursor: pointer;
  z-index: 12;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 16px 0 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  padding: 7px 6px;
  border-radius: 7px;
  transition: background 0.15s, color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(35,163,147,0.13);
  color: var(--brand-secondary);
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===========================================================
HERO BANNERS & MAJOR CALL OUTS
=========================================================== */
.hero, .kursplan-hero, .probetraining-hero, .mitgliedschaft-hero, .anlagen-hero, .kontakt-hero, .danke-sektion {
  background: linear-gradient(104deg, var(--accent-bg) 80%, var(--nature-sage) 98%);
  border-radius: 0 0 55px 55px/0 0 18px 18px;
  box-shadow: 0 10px 40px -10px rgba(36,113,69,0.02);
  position: relative;
  margin-bottom: 60px;
}
.hero .content-wrapper,
.kursplan-hero .content-wrapper,
.probetraining-hero .content-wrapper,
.mitgliedschaft-hero .content-wrapper,
.anlagen-hero .content-wrapper,
.kontakt-hero .content-wrapper,
.danke-sektion .content-wrapper {
  align-items: flex-start;
  min-height: 250px;
  justify-content: center;
  padding: 32px 0 14px 0;
}
.hero h1, .kursplan-hero h1, .probetraining-hero h1, .mitgliedschaft-hero h1, .anlagen-hero h1, .kontakt-hero h1 {
  color: var(--brand-primary);
  margin-bottom: 0.16em;
}
.hero p, .kursplan-hero p, .probetraining-hero p, .mitgliedschaft-hero p, .anlagen-hero p, .kontakt-hero p {
  font-size: 1.07rem;
  margin-bottom: 18px;
  color: var(--text-normal);
  max-width: 598px;
}

/* ========== CTA HIGHLIGHT/Section Style ========== */
.cta-highlight, .kurse-cta, .mitgliedschaft-cta, .probetraining-cta{
  background: var(--nature-sage);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}
.cta-highlight .content-wrapper, .kurse-cta .content-wrapper, .mitgliedschaft-cta .content-wrapper, .probetraining-cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 10px 0 10px 0;
}
.cta-highlight h2, .kurse-cta h2, .mitgliedschaft-cta h2, .probetraining-cta h2 {
  color: var(--nature-earth);
  margin-bottom: 4px;
}

/* ===========================================================
FLEXBOX SPACING & CARD CONTAINERS
=========================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px 24px 28px 24px;
  transition: box-shadow 0.14s, transform 0.14s;
}
.card:hover, .card:focus {
  box-shadow: 0 4px 30px 0 rgba(35,163,147,0.09);
  transform: translateY(-2px) scale(1.01);
}
.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;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 12px 0 rgba(36,113,69,0.08);
  margin-bottom: 24px;
  max-width: 600px;
  min-width: 250px;
  border-left: 6px solid var(--nature-green);
  position: relative;
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 1.09rem;
  line-height: 1.6;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin-left: 28px;
  margin-top: 8px;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px 20px 18px 20px;
  min-width: 220px;
  flex: 1 1 200px;
  transition: box-shadow 0.13s, transform 0.13s;
  margin-bottom: 20px;
}
.feature-item img {
  height: 46px;
  width: 46px;
  margin-bottom: 4px;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 2px 30px 0 rgba(36,113,69,0.10);
  transform: translateY(-2px) scale(1.01);
}
/* Special grids */
.feature-grid, .facility-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

/* Team Overview (About Page) */
.team-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.team-member-bio {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  flex: 1 1 230px;
  min-width: 200px;
  padding: 18px 16px;
  margin-bottom: 20px;
  font-size: 1rem;
}
.team-trust-signals ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 10px;
}
.team-trust-signals li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F4F8F5;
  border-radius: 8px;
  padding: 6px 14px;
  min-width: 170px;
}
.team-trust-signals img {
  height: 26px;
  width: 26px;
}

/* Plan Overview (Mitgliedschaft) */
.plan-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
  justify-content: flex-start;
}
.plan {
  background: var(--accent-bg);
  border: 2px solid var(--nature-earth);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  min-width: 220px;
  flex: 1 1 240px;
  padding: 28px 20px 20px 20px;
  margin-bottom: 20px;
  transition: border 0.18s;
}
.plan:hover, .plan:focus {
  border: 2px solid var(--nature-green);
}
.plan h3 {
  color: var(--nature-earth);
  font-size: 1.38rem;
  margin-bottom: 6px;
}
.plan ul li {
  margin-bottom: 7px;
}

.comparison-table {
  margin: 20px 0 28px 0;
  overflow-x: auto;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.comparison-table th, .comparison-table td {
  border: 1px solid var(--border);
  padding: 12px 13px;
  text-align: center;
  font-size: 0.97rem;
}
.comparison-table th {
  background: var(--nature-sage);
  color: var(--brand-primary);
}
.comparison-table tr:nth-child(even) {
  background: #F9FBF9;
}

.benefits-list ul {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.benefits-list li {
  list-style: disc inside;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #F2F6F4;
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  margin-bottom: 14px;
}
.faq-item h3 { color: var(--brand-primary); font-weight: 600; }

/* ===========================================================
COURSE LISTINGS & TABLES
=========================================================== */
.course-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.course-item {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: transform 0.13s, box-shadow 0.13s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.course-item img {
  height: 40px;
  width: 40px;
  margin-bottom: 3px;
}
.course-item h3 {
  font-size: 1.07rem;
  font-weight: 700;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.course-item span {
  margin-left: 10px;
  font-size: 0.99rem;
  font-weight: 500;
  color: var(--nature-earth);
  display: flex;
  align-items: center;
}
.course-item span img {
  height: 16px;
  width: 16px;
  margin-right: 4px;
}
.course-item:hover, .course-item:focus {
  box-shadow: 0 4px 24px 0 rgba(35,163,147,0.09);
  transform: translateY(-1px) scale(1.012);
}

/* kursplan table styles */
.kursplan-tabelle table {
  width: 100%;
  margin-bottom: 18px;
  border-collapse: collapse;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  background: #fff;
}
.kursplan-tabelle th, .kursplan-tabelle td {
  border: 1px solid var(--border);
  padding: 12px 10px;
  text-align: center;
  font-size: 1rem;
}
.kursplan-tabelle th {
  background: var(--nature-sage);
  color: var(--brand-primary);
  font-weight: 700;
}
.kursplan-tabelle tr:nth-child(even) {
  background: #F5F9F4;
}
.filter-controls {
  margin-bottom: 18px;
  color: var(--brand-secondary);
  font-weight: 500;
}
.recent-updates {
  margin-top: 18px;
  background: #FCFDF9;
  border-left: 5px solid var(--nature-terracotta);
  padding: 10px 18px;
  border-radius: 14px 1em 1em 14px/14px 1em 1em 14px;
  color: var(--brand-primary);
}

/* ===========================================================
FORMS, LISTS, FAQS, etc.
=========================================================== */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  margin-left: 1.2em;
  color: var(--nature-terracotta);
}
.booking-tips ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--nature-green);
}
.faq-overview ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.faq-overview strong {
  color: var(--brand-primary);
}
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  align-items: center;
}

.kontakt-details .content-wrapper, .location-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--nature-sage);
  border-radius: var(--radius-sm);
  padding: 20px 18px 6px 18px;
}
.contact-block p, .location-block p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.09rem;
}
.contact-block img, .location-block img {
  height: 23px;
  width: 23px;
  min-width: 23px;
}

/* ===========================================================
FOOTER STYLES
=========================================================== */
footer {
  background: #223F34;
  color: #fff;
  padding: 0;
  border-top: 2.5px solid var(--nature-green);
}
footer .container {
  padding: 36px 20px 0 20px;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.footer-columns > div {
  flex: 1 1 220px;
  min-width: 210px;
  margin-bottom: 12px;
}
.footer-columns img {
  height: 45px;
  margin-bottom: 11px;
}
footer p, .footer-nav a, .footer-nav, .legal-nav a, .footer-bottom small {
  color: #F7F7F7;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.footer-nav a {
  color: #F7F7F7;
  font-size: 1.05rem;
  transition: color 0.15s;
  font-weight: 500;
  padding: 3px 0;
  border-radius: 6px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--brand-secondary);
  background: rgba(35,163,147,0.10);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--nature-green);
  margin-top: 30px;
  padding: 14px 0 22px 0;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  font-size: 0.97rem;
  justify-content: flex-end;
}
.legal-nav a {
  color: #D1F0DF;
  font-weight: 400;
}
.legal-nav a:hover,.legal-nav a:focus {
  color: var(--brand-secondary);
}

/* ===========================================================
COOKIE BANNER & COOKIE MODAL
=========================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #232916;
  color: #fff;
  z-index: 1010;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 16px 22px 16px;
  box-shadow: 0 -6px 32px -8px rgba(36,113,69,0.21);
  transition: transform 0.3s cubic-bezier(.21,.57,.4,1), opacity 0.22s;
  transform: translateY(0);
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  max-width: 600px;
  margin-right: 24px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, box-shadow 0.13s;
}
.cookie-banner .accept {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: var(--nature-green);
}
.cookie-banner .reject {
  background: #AF6A54;
  color: #fff;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #7f4f3d;
}
.cookie-banner .settings {
  background: none;
  border: 2px solid var(--nature-green);
  color: var(--nature-green);
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: var(--nature-green);
  color: #fff;
}
/* Cookie modal pop-up */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(36,113,69,0.48);
  z-index: 1201;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: opacity 0.19s;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 40px 0 rgba(36,113,69,0.14);
  max-width: 440px;
  width: 100%;
  padding: 32px 28px;
  color: var(--brand-primary);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1302;
  animation: cookieModalIn 0.36s cubic-bezier(.41,.77,.40,1.36) forwards;
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translateY(40px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1);   }
}
.cookie-modal h3 {
  color: var(--nature-green);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: var(--brand-secondary);
}
.cookie-category .essential {
  accent-color: var(--nature-green);
}
.cookie-category label {
  color: var(--brand-primary);
  font-weight: 500;
  font-size: 1.04rem;
}
.cookie-category .always {
  font-size: 0.96rem;
  color: #6E9182;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal .save {
  background: var(--brand-secondary);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 99px;
  padding: 8px 19px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.13s;
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: var(--nature-green);
}
.cookie-modal .close-modal {
  background: none;
  border: 2px solid var(--nature-green);
  color: var(--nature-green);
  border-radius: 99px;
  padding: 8px 19px;
  font-weight: 600;
  font-size: 0.96rem;
  cursor: pointer;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--nature-green);
  color: #fff;
}

/* ===========================================================
MISC MICRO TRANSITIONS & VISUAL EFFECTS
=========================================================== */
button, .cta-button, .card, .feature-item, .plan, .testimonial-card, .course-item {
  transition: box-shadow 0.13s, background 0.13s, color 0.13s, transform 0.10s;
}
a.cta-button {
  text-decoration: none !important;
}

/* ORGANIC, NATURAL EFFECTS */
section, .card, .feature-item, .plan, .faq-item {
  border-radius: var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-sm)/var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-sm);
}


/* ===========================================================
RESPONSIVE BREAKPOINTS
=========================================================== */
@media (max-width: 1200px) {
  .container {
    max-width: 99vw;
    padding: 0 16px;
  }
}
@media (max-width: 980px) {
  .footer-columns {
    gap: 18px;
  }
  .feature-grid, .facility-grid, .card-container, .team-overview, .plan-overview, .testimonial-list, .course-listings {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .facility-grid, .card-container, .team-overview, .plan-overview, .testimonial-list, .course-listings {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .footer-columns {
    flex-direction: column;
    gap: 6px;
  }
  .content-grid, .feature-grid, .card-container, .team-overview, .plan-overview, .testimonial-list, .course-listings {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .testimonial-card {
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 12px;
  }
  .section, section {
    margin-bottom: 38px;
    padding: 22px 10px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .kursplan-tabelle th, .kursplan-tabelle td, .comparison-table th, .comparison-table td {
    font-size: 0.95rem;
    padding: 9px 5px;
  }
  .cookie-banner {
    flex-direction: column;
    text-align: left;
    padding: 14px 8px 12px 8px;
    gap: 12px;
  }
}
@media (max-width: 540px) {
  h1, .h1 {
    font-size: 1.55rem;
  }
  h2, .h2 {
    font-size: 1.2rem;
  }
  .footer-columns > div {
    min-width: 0;
  }
  .footer-nav, .footer-nav a { font-size: 1rem; }
  .container {
    padding: 0 5px;
  }
}
@media (max-width: 420px) {
  .cookie-banner .cookie-text {
    margin-right: 0;
    max-width: 94vw;
  }
  .cookie-modal {
    padding: 18px 8px;
  }
}

/* Hide cookie modal by default (should be controlled via JS) */
.cookie-modal-backdrop {
  display: none;
}
.cookie-modal-backdrop.active {
  display: flex;
}


/* ===========================================================
SCROLLBAR & ACCESSIBILITY
=========================================================== */
::-webkit-scrollbar {
  width: 8px;
  background: #E6EFEC;
}
::-webkit-scrollbar-thumb {
  background: var(--nature-sage);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-secondary);
}

/* FOCUS STATE FOR ACCESSIBLE NAV LINKS */
nav a:focus-visible {
  outline: 2.5px solid var(--brand-secondary);
  outline-offset: 1px;
  border-radius: 4px;
  z-index: 10;
}

/* ========== PRINT OPTIMIZATION ========== */
@media print {
  header, footer, .mobile-menu, .cookie-banner {
    display: none !important;
  }
  main {
    background: #fff;
    color: #111;
  }
}
