/* 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; }
*, *:before, *:after { box-sizing: inherit; }

body {
  background: #F7F6F1;
  color: #3a362e;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: #37693c;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover {
  color: #B11227;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
  padding-left: 0;
}
ul li, ol li {
  padding-left: 0;
  margin-bottom: 6px;
  list-style: disc inside;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600&family=Roboto:wght@400;500&display=swap');
h1, h2, h3, h4 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  color: #2a4221;
  margin-bottom: 8px;
}
h2 {
  font-size: 1.75rem;
  color: #37693c;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 14px;
}
strong {
  font-weight: 600;
  color: #2a4221;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  margin-bottom: 40px;
}

/* ORGANIC/NATURE SHAPE DECORATIONS */
.hero-section:before, .features-section:after {
  content: '';
  display: block;
  width: 170px;
  height: 70px;
  background: #E2E7DA;
  position: absolute;
  border-radius: 100px 80px 150px 120px / 70px 100px 100px 140px;
  opacity: 0.23;
  z-index: 0;
}
.hero-section:before {
  left: 0;
  top: -30px;
}
.features-section:after {
  right: 0;
  bottom: 40px;
}

/* HEADER */
header {
  background: #FAFCF9;
  box-shadow: 0 2px 12px 0 rgba(50,56,39,0.05);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 14px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  filter: none;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #324d34;
  padding: 8px 2px;
  border-radius: 6px;
  line-height: 1.1;
  transition: color 0.22s, background 0.22s;
  font-weight: 500;
}
.main-nav a:hover, .main-nav a.active {
  background: #e2efe6;
  color: #B11227;
}
.btn-primary {
  background: #37693c;
  color: #F7F6F1;
  border: none;
  border-radius: 20px 40px 28px 24px/40px 20px 38px 30px;
  padding: 10px 28px;
  box-shadow: 0 2px 14px 0 rgba(56,102,62,0.07);
  font-size: 1.11rem;
  font-family: 'Oswald';
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-left: 10px;
}
.btn-primary:focus, .btn-primary:hover {
  background: #2a4221;
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 4px 24px 0 rgba(56,102,62,0.14);
}
.btn-secondary {
  background: #E2E7DA;
  color: #222;
  border: none;
  border-radius: 20px 40px 28px 24px/40px 20px 38px 30px;
  padding: 9px 25px;
  font-size: 1rem;
  font-family: 'Oswald';
  font-weight: 500;
  margin-top: 8px;
  cursor: pointer;
  box-shadow: 0 2px 6px 0 rgba(85,116,70,0.06);
  transition: background 0.18s, color 0.18s;
}
.btn-secondary:focus, .btn-secondary:hover {
  background: #C6DEC3;
  color: #214010;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #37693c;
  cursor: pointer;
  margin-left: 18px;
  z-index: 102;
  border-radius: 50%;
  padding: 6px 12px;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #e2efe6;
  color: #B11227;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(233,237,241, 0.97);
  z-index: 2002;
  transform: translateX(100%);
  transition: transform 0.43s cubic-bezier(.87,.13,.27,.91);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 32px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #2a4221;
  cursor: pointer;
  margin-bottom: 22px;
  margin-right: 10px;
  border-radius: 50%;
  padding: 8px 12px;
  transition: background 0.16s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e2efe6;
  color: #B11227;
}
.mobile-nav {
  flex-direction: column;
  display: flex;
  gap: 20px;
  width: 100%;
  margin-top: 10px;
}
.mobile-nav a {
  color: #324d34;
  font-size: 1.28rem;
  font-family: 'Oswald';
  font-weight: 600;
  padding: 14px 4px 14px 0;
  border-radius: 16px 40px 38px 28px / 25px 28px 28px 25px;
  transition: color 0.20s, background 0.18s;
  width: 100%;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #fff;
  background: #37693c;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 8px;
    min-height: 56px;
  }
  .main-nav a {
    font-size: 0.97rem;
    padding: 7px 2px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding-left: 10px;
    padding-right: 10px;
    gap: 6px;
  }
}

@media (max-width: 600px) {
  .mobile-menu {
    padding-top: 20px;
    padding-left: 14px;
    padding-right: 10px;
  }
}

/* SECTIONS & SPACING  */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
@media (max-width: 768px) {
  .section, section {
    padding: 28px 6px 24px 6px;
    margin-bottom: 40px;
  }
}
.features-section {
  background: #F4F8F2;
  border-radius: 0 0 90px 0/0 0 150px 0;
}

.hero-section {
  background: #e2efe6;
  border-bottom-left-radius: 140px 50px;
  border-bottom-right-radius: 70px 120px;
  position: relative;
  z-index: 1;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px 0 60px 0;
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 200px;
    padding: 46px 0 32px 0;
  }
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.hero-section h1 {
  color: #244116;
}

.cta-section {
  background: #37693c;
  color: #fff;
  border-radius: 90px 0 90px 0/0 0 140px 0;
  margin-bottom: 0;
}
.cta-section .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
}
.cta-section .btn-primary {
  margin: 0 auto;
  background: #E9EDF1;
  color: #2a4221;
  box-shadow: 0 2px 14px 0 rgba(204,235,210,0.08);
}
.cta-section .btn-primary:hover {
  background: #C6DEC3;
  color: #1b3311;
}

/* FLEXBOX LAYOUTS */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 30px 40px 30px 20px/30px 38px 30px 36px;
  box-shadow: 0 4px 24px rgba(63,96,72,0.09);
  padding: 22px 28px;
  flex: 1 1 275px;
  min-width: 270px;
  max-width: 100%;
  transition: box-shadow 0.19s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(63,96,72,0.15);
  transform: translateY(-4px) scale(1.018);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}

/* ORGANIC CARDS & ICONS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
  margin-top: 18px;
  list-style: none;
}
.feature-grid li {
  flex: 1 1 210px;
  background: #e2efe6;
  border-radius: 28px 40px 28px 20px/26px 26px 34px 30px;
  padding: 22px 22px 18px 22px;
  margin-bottom: 0;
  min-width: 190px;
  font-size: 1.03rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  box-shadow: 0 1px 8px rgba(63,96,72,0.03);
  position: relative;
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}
.feature-grid span {
  font-size: 0.96rem;
  color: #496045;
  margin-top: 3px;
}
.benefit-icons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 18px;
  margin-top: 10px;
}
.benefit-icons img {
  width: 32px;
  height: 32px;
  background: #F4F8F2;
  border-radius: 16px 32px 32px 16px / 16px 32px 16px 32px;
  padding: 6px;
  box-shadow: 0 1px 7px rgba(85,116,70,0.07);
}
.feature-descriptions {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 1rem;
  color: #464634;
  list-style: disc inside;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TESTIMONIALS */
.testimonials-section {
  background: #E2E7DA;
  margin-bottom: 60px;
  border-radius: 0 0 70px 0/0 0 140px 0;
  padding-top: 48px;
  padding-bottom: 48px;
}
.testimonials-section h2 {
  text-align: center;
  margin-bottom: 34px;
  color: #244116;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 32px 24px 42px 28px/30px 40px 20px 34px;
  box-shadow: 0 2px 18px rgba(68,73,55,0.09);
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  transition: box-shadow 0.17s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(68,73,55,0.15);
  transform: translateY(-3px);
}
.testimonial-avatar {
  min-width: 56px;
  min-height: 56px;
  max-width: 56px;
  max-height: 56px;
  background: #37693c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald';
  font-size: 1.4rem;
  border-radius: 50%;
  font-weight: 700;
  box-shadow: 0 1px 6px rgba(56,102,62,0.09);
  letter-spacing: 1px;
  border: 4px solid #E2E7DA;
}
.testimonial-content p {
  color: #222;
  margin-bottom: 10px;
  font-size: 1rem;
}
.testimonial-name {
  color: #344215;
  font-size: 0.97rem;
  font-family: 'Roboto';
  font-weight: 500;
  margin-bottom: 8px;
}
.testimonial-stars img {
  width: 21px;
  height: 21px;
  display: inline-block;
}

@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 10px 18px 14px;
    min-width: unset;
  }
  .testimonial-avatar {
    margin-bottom: 2px;
  }
}

/* TABLES */
table.tarifvergleich {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 32px;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  box-shadow: 0 2px 10px rgba(208,215,194,0.09);
  border-radius: 26px 34px 20px 32px/26px 28px 32px 34px;
  overflow: hidden;
}
table.tarifvergleich thead th {
  background: #e2efe6;
  color: #244116;
  padding: 14px 8px;
  font-family: 'Oswald';
  font-size: 1.12rem;
}
table.tarifvergleich td, table.tarifvergleich th {
  border: none;
  padding: 11px 8px;
  text-align: left;
  font-size: 1rem;
}
table.tarifvergleich tbody tr:nth-child(even) {
  background: #F4F8F2;
}
table.tarifvergleich tbody tr:nth-child(odd) {
  background: #fff;
}

table.tarifvergleich tbody td {
  color: #2a4221;
}

/* CARDS, LISTS, ORGANIC STYLES */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.course-list, .core-values, .unique-selling-points, .equipment-list, .membership-benefits, .directions, .expertise-list {
  margin-top: 16px;
  margin-bottom: 28px;
  font-size: 1.07rem;
  color: #244116;
  list-style: disc inside;
}
.special-features ul, .equipment-list, .directions, .expertise-list, .feature-descriptions {
  gap: 6px;
}
.course-highlights {
  background: #e2efe6;
  padding: 16px 24px;
  border-radius: 30px 35px 30px 20px/30px 38px 30px 36px;
  box-shadow: 0 2px 9px rgba(63,96,72,0.06);
  margin-bottom: 18px;
}

.extrainfos, .kundenorientierung {
  background: #E2E7DA;
  border-radius: 18px 34px 32px 36px/18px 32px 32px 22px;
  padding: 10px 18px;
  font-size: 1rem;
  color: #23441A;
  box-shadow: 0 1px 6px rgba(56,102,62,0.03);
  margin-top: 10px;
}


.contact-info-box {
  background: #E2E7DA;
  border-radius: 25px 38px 24px 22px/20px 42px 26px 40px;
  padding: 18px 22px 18px 26px;
  margin-bottom: 22px;
  box-shadow: 0 2px 9px rgba(56,102,62,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info-box p {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  color: #23441A;
  margin-bottom: 0;
}
.contact-info-box img {
  width: 22px;
  height: 22px;
  filter: grayscale(0.18) opacity(0.8);
}
.cta-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
}
.cta-contact .btn-primary {
  margin-bottom: 4px;
}


.trainer-profiles {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.trainer-profile {
  background: #e2efe6;
  border-radius: 22px 36px 22px 18px/24px 30px 26px 22px;
  box-shadow: 0 1px 8px rgba(70,116,72,0.03);
  padding: 16px 18px;
  min-width: 180px;
  flex: 1 1 230px;
}

@media (max-width: 970px) {
  .trainer-profiles {
    flex-direction: column;
    gap: 14px;
  }
}

.trainer-profile h2 {
  margin-bottom: 6px;
  color: #244116;
}
.brand-story, .trainer-philosophy, .sicherheitsinfos {
  background: #E2E7DA;
  border-radius: 22px 40px 30px 24px/28px 44px 30px 40px;
  padding: 18px 22px;
  margin-bottom: 24px;
  color: #335429;
}

@media (max-width: 768px) {
  .card-container, .card-grid, .feature-grid, .content-grid, .trainer-profiles {
    flex-direction: column;
    gap: 18px !important;
  }
  .footer-brand, .footer-nav, .footer-social {
    justify-content: center;
    align-items: center;
  }
}


/* FOOTER */
footer {
  background: #e2efe6;
  margin-top: 40px;
  border-radius: 90px 0 70px 0/0 0 100px 0;
  padding: 38px 0 22px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-family: 'Oswald';
  font-size: 1.02rem;
  color: #23441A;
  flex: 2 1 270px;
}
.footer-brand img {
  width: 46px;
  height: 46px;
  min-width: 46px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.99rem;
  color: #214010;
  align-items: center;
}
.footer-nav a {
  color: #214010;
  font-family: 'Oswald';
  font-size: 1rem;
  padding: 2px 5px;
  border-radius: 8px;
  transition: color 0.19s, background 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #C6DEC3;
  color: #B11227;
}
.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 14px;
}
.footer-social a img {
  width: 26px;
  height: 26px;
  transition: filter 0.16s;
  filter: grayscale(0.2) opacity(0.8);
}
.footer-social a:hover img {
  filter: none;
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .footer-social {
    margin-top: 8px;
    justify-content: center;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 3002;
  background: #fff;
  color: #23441A;
  border-radius: 22px 44px 25px 20px/26px 34px 30px 38px;
  box-shadow: 0 6px 28px rgba(56,102,62,.17);
  padding: 22px 34px 18px 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-width: 240px;
  max-width: 98vw;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: opacity .33s, transform .5s, visibility .3s;
}
.cookie-banner.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cookie-banner .cookie-text {
  flex: 1 1 260px;
  font-size: 1rem;
  margin-bottom: 2px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  border: none;
  padding: 9px 20px;
  border-radius: 16px 32px 18px 20px/15px 18px 20px 18px;
  font-family: 'Oswald';
  font-size: 1rem;
  font-weight: 500;
  background: #E2E7DA;
  color: #23441A;
  cursor: pointer;
  margin-left: 0;
  margin-right: 0;
  transition: background 0.19s, color 0.17s;
  box-shadow: 0 2px 6px 0 rgba(56,102,62,0.06);
}
.cookie-btn.accept {
  background: #37693c;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #244116;
}
.cookie-btn.reject {
  background: #fff;
  color: #B11227;
  border: 1px solid #B11227;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F4F8F2;
  color: #a11021;
  border-color: #a11021;
}
.cookie-btn.settings {
  background: #C6DEC3;
  color: #23441A;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E2E7DA;
  color: #37693c;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 15px 10px 15px 14px;
    gap: 15px;
  }
  .cookie-banner .cookie-text {
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    gap: 9px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(56,102,62, 0.22);
  z-index: 3003;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity .4s, background .3s;
}
.cookie-modal-overlay.visible {
  display: flex;
}
.cookie-modal {
  background: #FCFDFB;
  border-radius: 30px 44px 36px 28px/38px 46px 36px 34px;
  box-shadow: 0 8px 40px rgba(56,102,62,0.15);
  padding: 34px 32px 28px 38px;
  min-width: 270px;
  max-width: 96vw;
  max-height: 92vh;
  overflow-y: auto;
  color: #23441A;
  position: relative;
  animation: modal-slide-in .51s cubic-bezier(.87,.13,.27,.91);
}
@keyframes modal-slide-in {
  from {transform: translateY(46px) scale(0.95);opacity:0.2;}
  to   {transform: translateY(0) scale(1);opacity:1;}
}
.cookie-modal h3 {
  font-size: 1.28rem;
  color: #244116;
  margin-bottom: 12px;
  font-family: 'Oswald';
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.cookie-modal-category input[type=checkbox] {
  accent-color: #37693c;
  width: 18px;
  height: 18px;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: #244116;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 24px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #B11227;
  cursor: pointer;
  border-radius: 50%;
  transition: background .15s;
  padding: 0 9px;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #F4F8F2;
}

/* EXTRAS FOR ACCESSIBILITY, FOCUS, ETC. */
:focus-visible {
  outline: 3px solid #37693c;
  outline-offset: 2px;
}
button:focus {
  outline: 2px solid #37693c;
}

/* GENERAL RESPONSIVE TYPOGRAPHY SCALE */
@media (max-width: 600px) {
  h1 { font-size: 1.78rem; }
  h2 { font-size: 1.20rem; }
  h3 { font-size: 1.02rem; }
  p, .footer-nav, .footer-brand, .footer-social,
  table.tarifvergleich td, table.tarifvergleich th {
    font-size: 0.98rem;
  }
}

/* SPACING RULES & GAPS CRITICAL */
.card, .feature-grid li, .trainer-profile, .contact-info-box, .brand-story, .course-highlights, .extrainfos, .kundenorientierung, .special-features, .sicherheitsinfos {
  margin-bottom: 20px;
}
.card-container, .card-grid, .feature-grid, .content-grid, .trainer-profiles {
  gap: 24px;
  margin-bottom: 20px;
}
.testimonial-card {
  gap: 20px;
  margin-bottom: 28px;
}

/* Ensure overall margins/paddings between all cards/elements */
.content-wrapper > *:not(:last-child) {
  margin-bottom: 20px;
}

/* CRITICAL: NO display:grid or columns used. Flex only! */

/* MICRO-INTERACTIONS / TRANSITIONS */
a, .btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.19s, color 0.18s, box-shadow 0.23s, transform 0.13s;
}

/* HIDDEN CLASSES FOR JS USABILITY (for mobile menu/modal) */
.is-hidden, .hide {
  display: none !important;
}

/* UTILITIES */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* END OF NATURE_ORGANIC CSS - ALL FLEXBOX, NO GRID, NO COLUMNS */
