/* 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: #F8FBFC;
  font-family: 'Roboto', Arial, sans-serif;
  color: #195C83;
  font-size: 16px;
}
*, *:before, *:after { box-sizing: inherit; }
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
a { color: #195C83; text-decoration: none; transition: color 0.2s; }
a:focus, a:hover { color: #D9B905; text-decoration: underline; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* PLAYFUL DYNAMIC COLOR SCHEME */
:root {
  --primary: #195C83;
  --secondary: #D9B905;
  --accent: #FFFFFF;
  --fun-1: #FE5E41;
  --fun-2: #24C6DC;
  --fun-3: #FFD662;
  --text-dark: #195C83;
  --text-light: #fff;
  --shadow: 0 6px 32px 0 rgba(25, 92, 131, 0.10);
  --border-radius: 22px;
  --gap-main: 24px;
  --gap-card: 20px;
  --gap-section: 60px;
}

/* CORE LAYOUT CLASSES */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  flex: 1 1 300px;
  min-width: 250px;
  transition: transform 0.20s, box-shadow 0.22s;
}
.card:hover {
  transform: translateY(-8px) scale(1.03) rotate(-1.5deg);
  box-shadow: 0 12px 40px rgba(25,92,131,0.18);
}
.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(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  min-width: 270px;
  max-width: 600px;
  border-left: 10px solid var(--fun-1);
  animation: popCard 0.8s cubic-bezier(.14,.83,.16,1.15);
}
@keyframes popCard {
  0% { opacity: 0; transform: scale(0.9) translateY(30px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(90deg, #24C6DC 0%, #195C83 80%);
  color: var(--text-light);
  padding: 64px 0 50px 0;
  border-bottom-left-radius: 56px;
  border-bottom-right-radius: 56px;
  min-height: 320px;
  animation: bgMove 11s linear infinite alternate;
}
@keyframes bgMove {
  0%{background-position:0% 50%;}
  100%{background-position:100% 50%;}
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero-section h1 {
  font-size: 2.8rem;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 2px 24px rgba(25,92,131,.08);
  line-height: 1.10;
  margin-bottom: 0.4em;
}
.hero-section .subheadline {
  font-size: 1.25rem;
  color: var(--fun-3);
  font-weight: 500;
  margin-bottom: 1.25em;
  font-family: 'Roboto', Arial, sans-serif;
}

/* FEATURES SECTION */
.features-section .content-wrapper {
  gap: 40px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 300px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 18px 22px 18px;
  border-top: 7px solid var(--secondary);
  position: relative;
  transition: transform 0.19s, box-shadow 0.19s;
}
.feature-grid > div:hover {
  transform: translateY(-6px) scale(1.025) rotate(-2deg);
  box-shadow: 0 12px 40px rgba(217,185,5,0.15);
  border-top-color: var(--fun-1);
}
.feature-grid h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  font-size: 1.16em;
}
.feature-grid p {
  color: var(--primary);
  font-size: 1em;
}
.feature-icons {
  display: flex;
  gap: 28px;
  margin: 20px 0 0 0;
  flex-wrap: wrap;
  align-items: center;
}
.feature-icons > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.feature-icons img {
  width: 48px; height: 48px; filter: drop-shadow(0 2px 10px rgba(36,198,220,0.08));
}
.feature-icons p {
  color: var(--secondary);
  font-family: 'Montserrat', cursive;
  font-size: 1.04em;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.feature-benefits {
  margin-top: 16px;
  font-size: 1.02em;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: var(--border-radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
}

/* PRICING & TABLES */
.course-table, .price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  margin-top: 10px;
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 1.04em;
}
.course-table th,
.course-table td,
.price-table th,
.price-table td {
  padding: 15px 12px;
  text-align: left;
  border-bottom: 1px solid #e2ecf2;
}
.course-table th,
.price-table th {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08em;
}
.course-table tbody tr:nth-child(even), .price-table tbody tr:nth-child(even) {
  background: #f7f8fa;
}

/* OFFERING CARDS ON sportangebote.html */
.offering-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.offering-cards > div {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  flex: 1 1 220px;
  min-width: 185px;
  max-width: 285px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.offering-cards > div:hover {
  box-shadow: 0 8px 34px rgba(254,94,65,0.14);
  transform: rotate(-1.5deg) scale(1.025);
}

/* CTA BUTTONS */
.cta-button {
  background: var(--fun-1);
  color: #fff !important;
  padding: 17px 38px;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15em;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 30px 0 rgba(254,94,65,0.11);
  letter-spacing: 0.015em;
  margin-top: 10px;
  transition: background 0.17s, box-shadow 0.17s, transform 0.19s;
  position: relative;
  display: inline-block;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus {
  background: var(--secondary);
  color: var(--primary) !important;
  box-shadow: 0 10px 38px 0 rgba(217,185,5,0.14);
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
}

.cta-box {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
  margin: 12px 0;
}

/* LISTS (Features, Steps, FAQ, etc.) */
ul, .stepper-list, .step-list, .benefit-list, .values-list, .update-list {
  margin-left: 0;
  margin-bottom: 24px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul li, .stepper-list li, .step-list li, .benefit-list li, .values-list li, .update-list li {
  position: relative;
  padding-left: 30px;
  font-size: 1.03em;
  color: var(--primary);
}
ul li:before, .benefit-list li:before, .update-list li:before, .values-list li:before {
  content: '•';
  position: absolute;
  left: 6px;
  color: var(--fun-1);
  font-size: 1.3em;
  line-height: 1;
}
.stepper-list li, .step-list li {
  padding-left: 32px;
  font-weight: 600;
}
.stepper-list li:before, .step-list li:before {
  content: counter(item) ".";
  counter-increment: item;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: var(--fun-2);
  position: absolute;
  left: 0;
  top: 0;
}
.stepper-list, .step-list { counter-reset: item; }

/***** FAQ ***** /
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list > div {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  margin-bottom: 12px;
}
.faq-list h3 {
  color: var(--fun-1);
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 1.09em;
  margin-bottom: 5px;
}

/* TESTIMONIAL CARDS */
.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  color: #195C83;
  font-size: 1.09em;
  font-style: italic;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card blockquote span {
  display: block;
  margin-top: 9px;
  color: var(--fun-1);
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 0.98em;
}

/* TABLES FOR LEGENDS AND ICONS */
.icon-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-bottom: 16px;
}
.icon-legend p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
}
.icon-legend img { width: 32px; height: 32px; }

.download-link {
  margin: 20px 0 10px;
}
.highlight-box {
  background: var(--fun-3);
  color: var(--primary);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Footer Styles */
footer {
  background: var(--primary);
  padding: 36px 0 24px 0;
  color: #fff;
  margin-top: 60px;
}
footer .container {
  max-width: 1100px;
}
.footer-links {
  flex: 1 1 180px;
  color: #fff;
  font-size: 1em;
  margin-bottom: 14px;
}
.footer-links a {
  color: var(--fun-3);
  font-family: 'Montserrat', cursive, sans-serif;
  font-weight: 700;
  text-decoration: none;
  margin: 0 8px;
}
.footer-links a:hover {
  color: var(--secondary);
  text-decoration: underline;
}
.brand-contact {
  flex: 2 1 330px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98em;
  font-weight: 400;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.55;
}
.brand-contact strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.13em;
  color: var(--secondary);
}
.newsletter-signup {
  flex: 1 1 230px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 3px 18px 0 rgba(217,185,5,.09);
  padding: 22px 17px;
  color: var(--primary);
  font-size: 0.98em;
  min-width: 230px;
}
.newsletter-signup h4 {
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  margin-bottom: 8px;
}
.newsletter-signup input[type="email"] {
  width: 100%;
  border: 2px solid var(--secondary);
  padding: 11px 14px;
  margin: 10px 0 9px 0;
  border-radius: 16px;
  font-family: inherit;
  font-size: 1em;
  outline: none;
  transition: border 0.16s;
}
.newsletter-signup input[type="email"]:focus {
  border: 2px solid var(--fun-1);
}
.newsletter-signup button[type="submit"] {
  background: var(--fun-2);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 16px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  margin-right: 8px;
  box-shadow: 0 3px 12px rgba(36,198,220,0.08);
  transition: background 0.13s;
}
.newsletter-signup button[type="submit"]:hover {
  background: var(--fun-1);
}
.privacy-notice {
  font-size: 0.91em;
  color: var(--fun-1);
  margin-top: 7px;
}
.privacy-notice a { color: var(--fun-2); text-decoration: underline; }

/******* HEADER & NAV ******/
header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  background: #fff;
  padding: 18px 0 14px 0;
  min-height: 78px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 10;
}
header > a img {
  height: 46px;
  width: auto;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 24px;
  flex: 1 1 0;
}
.main-nav a {
  font-family: 'Montserrat', cursive, sans-serif;
  color: var(--primary);
  font-size: 1.04em;
  background: none;
  padding: 9px 14px;
  border-radius: 14px;
  transition: background 0.19s, color 0.19s;
  font-weight: 600;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  text-decoration: underline;
}
header .cta-button {
  margin-left: 18px;
  padding: 13px 29px;
  font-size: 1em;
}

/***** MOBILE MENU *****/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--fun-1);
  color: #fff;
  border: none;
  border-radius: 40px;
  width: 53px;
  height: 53px;
  font-size: 2em;
  z-index: 200;
  box-shadow: 0 6px 28px 0 rgba(254,94,65,0.13);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.19s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,1.45,.4,1);
  z-index: 3333;
  box-shadow: 0 0 40px rgba(25,92,131,0.19);
  display: flex; flex-direction: column;
  padding: 42px 32px 32px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--fun-1);
  font-size: 2.1em;
  border: none;
  position: absolute;
  top: 22px;
  right: 26px;
  cursor: pointer;
  z-index: 9;
  transition: color 0.18s;
}
.mobile-menu-close:hover { color: var(--secondary); }
.mobile-nav {
  margin-top: 55px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 1.32em;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 2px solid #F7F8FA;
  transition: color 0.19s, background 0.19s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--fun-1);
  background: #f8fbfc;
  border-bottom: 2px solid var(--fun-2);
}

/* HIDE NAV ON MOBILE, SHOW BURGER */
@media (max-width: 900px) {
  header .main-nav,
  header .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 900px) {
  .mobile-menu { padding-top: 30px; }
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: linear-gradient(90deg, #FFD662 0%, #24C6DC 100%);
  color: var(--text-dark);
  box-shadow: 0 -4px 22px 0 rgba(25,92,131,.08);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  min-height: 56px;
  z-index: 6000;
  padding: 18px 16px;
  animation: slideUp 0.6s;
}
@keyframes slideUp {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .banner-msg {
  font-size: 1.04em;
  font-family: 'Roboto';
  color: #195C83;
  flex: 2 1 250px;
}
.cookie-banner .cookie-btn {
  background: var(--fun-1);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 19px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1em;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  box-shadow: 0 2px 12px rgba(254,94,65,0.09);
}
.cookie-banner .cookie-btn:hover {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .settings-btn {
  background: var(--fun-2);
  color: #fff;
}
.cookie-banner .settings-btn:hover {
  background: var(--primary);
  color: var(--fun-3);
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  bottom: 50% !important;
  left: 50%;
  transform: translate(-50%, 70%) scale(0.85);
  background: #fff;
  color: var(--primary);
  box-shadow: 0 12px 62px rgba(25,92,131,0.17);
  border-radius: var(--border-radius);
  z-index: 9999;
  padding: 32px 22px 30px 22px;
  max-width: 90vw;
  min-width: 315px;
  width: 380px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s, transform 0.36s cubic-bezier(.34,1.4,.41,1.2);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0%) scale(1);
}
.cookie-modal h2 {
  font-family: 'Montserrat',sans-serif;
  font-size: 1.36em;
  margin-bottom: 10px;
  color: var(--primary);
}
.cookie-modal .cookie-category {
  margin: 17px 0 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.06em;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 23px; height: 23px;
  accent-color: var(--fun-1);
  margin-right: 10px;
}
.cookie-modal .cookie-category .always-enabled {
  color: var(--fun-1);
  font-weight: 700;
  font-size: 0.99em;
  font-family: 'Montserrat';
}
.cookie-modal .close-cookie-modal {
  background: none;
  border: none;
  color: var(--fun-1);
  font-size: 1.58em;
  position: absolute;
  top: 14px; right: 16px;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .close-cookie-modal:hover { color: var(--secondary); }
.cookie-modal .modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 12px 24px;
  border-radius: 16px;
  font-family: 'Montserrat';
  background: var(--fun-1);
  color: #fff;
  border: none;
  font-size: 1em;
  font-weight: 600;
  transition: background 0.12s, color 0.13s;
  cursor: pointer;
}
.cookie-modal .cookie-btn:hover { background: var(--secondary); color: var(--primary); }

/* Contact Details with Icons */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 5px 0 18px 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1em;
  color: var(--primary);
  font-weight: 500;
}
.contact-details img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
}

.text-section {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 32px;
  margin-bottom: 24px;
}
.text-section h3 {
  color: var(--fun-2);
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 7px;
  font-family: 'Montserrat';
}
.text-section strong { color: var(--fun-1); }

/****** MISC */
blockquote {
  font-style: italic;
}
main {
  margin-bottom: 100px;
}
.download-link a {
  color: var(--fun-1);
  font-weight: 600;
}
.download-link a:hover { color: var(--secondary); }
h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: .5px;
}
h2 {
  font-family: 'Montserrat', sans-serif;
  color: var(--fun-1);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 9px;
}
h3 {
  font-family: 'Montserrat', cursive, sans-serif;
  color: var(--fun-2);
  font-size: 1.14rem;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 0;
}
h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--fun-1);
  font-size: 1.03rem;
  font-weight: 700;
  margin-bottom: 5px;
}
p {
  font-size: 1em;
  color: var(--primary);
  line-height: 1.7;
}

/***** RESPONSIVE DESIGN *****/
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .container { max-width: 100vw; padding-left: 10px; padding-right: 10px; }
  .content-wrapper, .features-section .content-wrapper {
    gap: 28px;
  }
  .feature-grid, .offering-cards {
    gap: 18px;
  }
  .feature-grid > div, .offering-cards > div {
    padding: 15px 10px;
    min-width: 150px;
    max-width: unset;
  }
  .footer-links, .brand-contact, .newsletter-signup {
    font-size: 0.98em;
  }
}
@media (max-width: 730px) {
  .content-wrapper, .features-section .content-wrapper { gap: 16px; }
  .hero-section { padding-top: 32px; padding-bottom: 25px; }
  .feature-grid, .offering-cards, .footer-links, .main-nav, .content-grid, .feature-icons {
    gap: 13px;
  }
  .feature-grid, .offering-cards {
    flex-direction: column;
  }
  .feature-icons { justify-content: flex-start; gap: 19px; }
  .footer-links, .brand-contact, .newsletter-signup {
    min-width: unset;
    font-size: .97em;
    margin-bottom: 11px;
  }
  footer .content-wrapper {
    gap: 26px; flex-direction: column;
    align-items: flex-start;
  }
  header {
    flex-direction: row;
    gap: 7px;
    align-items: center;
    padding-top: 7px; padding-bottom: 7px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .testimonial-card { max-width: 99vw; }
  .feature-benefits { padding: 10px 7px; }
  .cta-box { flex-direction: column; gap: 9px; align-items: flex-start; margin: 5px 0; }
}
@media (max-width: 430px) {
  .hero-section h1 { font-size: 1.3em; }
  .hero-section { border-radius: 0 0 32px 32px; }
  .newsletter-signup form { flex-direction: column; gap: 8px; }
  .cookie-modal { min-width: 110px; width: 97vw; }
}

/* Focus Styles for Accessibility */
a:focus, button:focus, input:focus, .cta-button:focus, .cookie-btn:focus {
  outline: 2px dashed var(--secondary);
  outline-offset: 1.5px;
  background: #ffe;
}

/* Animate buttons & cards */
.cta-button, .cookie-btn, .newsletter-signup button[type="submit"] {
  transition: background 0.2s, box-shadow 0.2s, color 0.18s, transform .14s;
}
.card, .feature-grid > div, .offering-cards > div, .testimonial-card, .faq-list > div {
  transition: box-shadow 0.21s, transform 0.14s;
  will-change: transform;
}

/* For clarity: always visible hamburger on mobile */
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Hide Mobile Menu Initially */
.mobile-menu {
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.33s cubic-bezier(.41,1.5,.41,1), opacity 0.19s;
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
}

/* Hide Desktop Nav & CTA on Mobile */
@media (max-width: 900px) {
  .main-nav, header .cta-button { display: none !important; }
}

/* Prevent Overlapping & Ensure Spacing */
.card:not(:last-child),
.offering-cards > div:not(:last-child),
.feature-grid > div:not(:last-child),
.content-grid > *:not(:last-child),
.testimonial-card:not(:last-child),
.faq-list > div:not(:last-child) {
  margin-bottom: 20px;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}

/* Avoid absolute for cards – only icons as decorative */