/* CSS RESET & NORMALIZATION */
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 { height: 100%; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: #F4F8FB;
  color: #232323;
  font-family: 'Open Sans', 'Georgia', serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
*, *:before, *:after { box-sizing: inherit; }

/* FONT IMPORTS (FALLBACKS) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,500,400|Open+Sans:400,600&display=swap');

/* TYPOGRAPHY: Elegant Classic */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 700;
  color: #10324C;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; font-weight: 600; }
h4, h5 { font-size: 1.1rem; }
strong { font-weight: 700; }
p, ul, ol { margin-bottom: 16px; }
ul, ol { padding-left: 22px; }
a { color: #10324C; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #5CD0C2; text-decoration: underline; }

/* CONTAINER LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* SECTIONS & SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.accent-bg {
  background-color: #F4F8FB;
}

/* FLEXBOX CARDS/GRIDS (NO GRID) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid #e6e8eb;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(16, 50, 76, 0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 5px 25px 0 rgba(16, 50, 76, 0.16);
  transform: translateY(-4px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.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;
}

/***************************
  NAVIGATION & HEADER
***************************/
header {
  padding-top: 28px;
  background: #fff;
  box-shadow: 0 1px 12px 0 rgba(16,50,76,0.08);
  position: relative;
  z-index: 101;
}
.main-nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 22px;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav a.logo {
  margin-right: 38px;
  display: flex;
  align-items: center;
}
.main-nav a.button-primary {
  margin-left: 32px;
  min-width: 120px;
}
.main-nav a {
  font-size: 1rem;
  padding: 5px 0 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
  font-weight: 500;
  font-family: 'Montserrat', 'Georgia', serif;
}
.main-nav ul li a.active,
.main-nav ul li a:focus,
.main-nav ul li a:hover {
  color: #10324C;
  border-bottom: 2px solid #5CD0C2;
}
.logo img {
  display: block;
  max-height: 48px;
  width: auto;
}

/*********** MOBILE NAV *************/
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #10324C;
  border: none;
  font-size: 2.2rem;
  margin-left: 16px;
  cursor: pointer;
  z-index: 120;
  padding: 4px 16px;
  transition: color 0.2s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #F4F8FB;
  box-shadow: 0 2px 16px 0 rgba(16,50,76,0.12);
  z-index: 2000;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #10324C;
  font-size: 2.2rem;
  margin-bottom: 36px;
  align-self: flex-end;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.1rem;
  color: #10324C;
  padding: 12px 0;
  border-bottom: 1px solid #e6e8eb;
  transition: background 0.2s, color 0.2s;
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 500;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #eaf9f7;
  color: #5CD0C2;
}

/****************************
  HERO SECTIONS
****************************/
.hero {
  display: flex;
  align-items: center;
  min-height: 340px;
  padding-top: 32px;
  padding-bottom: 32px;
  background: #F4F8FB;
}
.hero .content-wrapper {
  max-width: 740px;
  align-items: flex-start;
  gap: 14px;
}
.hero .button-primary {
  margin-top: 16px;
}

/********************
  BUTTONS
********************/
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: 600;
  background: #10324C;
  color: #fff;
  border-radius: 999px;
  border: none;
  padding: 10px 28px;
  margin-top: 14px;
  box-shadow: 0 2px 8px 0 rgba(16,50,76,0.07);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.22s;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.01em;
  min-width: 160px;
  position: relative;
}
.button-primary:active,
.button-primary:focus,
.button-primary:hover {
  background: #5CD0C2;
  color: #10324C;
  box-shadow: 0 4px 16px 0 rgba(92,208,194,0.19);
  transform: scale(1.035);
}
.button-secondary {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #10324C;
  border: 2px solid #10324C;
  border-radius: 999px;
  font-size: 1rem;
  padding: 10px 26px;
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 1px 4px 0 rgba(16,50,76,0.06);
  cursor: pointer;
}
.button-secondary:active,
.button-secondary:focus,
.button-secondary:hover {
  background: #10324C;
  color: #fff;
}
.button-tertiary {
  display: inline-block;
  color: #5CD0C2;
  background: none;
  border: none;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'Montserrat', 'Georgia', serif;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.button-tertiary:hover,
.button-tertiary:focus {
  background: #eaf9f7;
  color: #10324C;
}

/****************************************
  FEATURES, SERVICES, CARDS, BENEFITS
*****************************************/
.features {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F4F8FB;
}
.feature-grid, .benefit-grid, .feature-list, .wellness-list, .benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.feature-grid li, .feature-list li, .benefit-grid li, .wellness-list li, .benefits-list li  {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(16,50,76,0.06);
  padding: 28px 22px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 250px;
  transition: box-shadow 0.21s, transform 0.22s;
}
.feature-grid img,
.feature-list img {
  width: 44px; height: 44px;
  display: block;
}
.feature-grid li:hover,
.feature-list li:hover,
.benefit-grid li:hover {
  box-shadow: 0 4px 24px 0 rgba(16,50,76,0.14);
  transform: translateY(-4px) scale(1.02);
}
.benefit-grid li, .wellness-list li, .benefits-list li {
  background: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  flex: 1 1 220px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(16,50,76,0.07);
  padding: 30px 26px;
  flex: 1 1 280px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.21s;
  position: relative;
}
.service-list li:hover {
  box-shadow: 0 5px 30px 0 rgba(92,208,194,0.12);
  transform: translateY(-3px) scale(1.016);
}
.price {
  font-family: 'Montserrat', 'Georgia', serif;
  color: #5CD0C2;
  margin-left: 10px;
  font-size: 1.1rem;
  font-weight: 600;
}

/**************************
  TESTIMONIALS & REVIEWS
***************************/
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F4F8FB;
  display: flex;
  flex-direction: column;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(16, 50, 76, 0.09);
  color: #232323;
  font-size: 1.09rem;
  max-width: 730px;
  transition: box-shadow 0.18s, transform 0.18s;
  border-left: 4px solid #5CD0C2;
}
.testimonial-card p {
  flex: 1;
  font-style: italic;
  font-family: 'Georgia', serif;
  color: #10324C;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #232323;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Montserrat', 'Georgia', serif;
}
.testimonial-card:hover {
  box-shadow: 0 7px 24px 0 rgba(16, 50, 76, 0.17);
  transform: scale(1.018);
}

/*******************************
  FOOTER
********************************/
footer {
  padding: 36px 22px 18px 22px;
  background: #fff;
  box-shadow: 0 -1px 10px 0 rgba(16,50,76,0.04);
}
footer .container {
  align-items: center;
  flex-direction: row;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
footer .logo img {
  max-height: 44px;
  margin-bottom: 0;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #10324C;
  font-size: 1rem;
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #5CD0C2;
}
footer p {
  color: #445060;
  font-size: 0.95rem;
  margin: 0;
  font-family: 'Open Sans', 'Georgia', serif;
}

/* LEGAL SECTION (datenschutz, gdpr, etc.) */
.legal {
  padding: 48px 20px 40px 20px;
  background: #F4F8FB;
  margin-bottom: 60px;
}
.legal .text-section {
  max-width: 760px;
}

/*********************
  CONFIRMATION PAGE
**********************/
.confirmation {
  display: flex;
  padding: 60px 20px 40px 20px;
  background: #F4F8FB;
  min-height: 340px;
}
.confirmation .content-wrapper {
  align-items: flex-start;
  text-align: left;
  max-width: 700px;
}

/*************************
  COOKIE BANNER & MODAL
**************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: #fff;
  box-shadow: 0 -2px 20px 0 rgba(16,50,76,0.13);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  color: #10324C;
  animation: cookieFadeIn 0.9s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieFadeIn {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  margin-top: 4px;
}
.cookie-accept {
  background: #10324C;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  padding: 8px 26px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
}
.cookie-accept:hover { background: #5CD0C2; color: #10324C; }
.cookie-reject {
  background: #fff;
  border: 2px solid #10324C;
  color: #10324C;
  border-radius: 999px;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  padding: 8px 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
  margin-left: 6px;
}
.cookie-reject:hover { background: #eaf9f7; color: #5CD0C2; }
.cookie-settings {
  background: #F4F8FB;
  color: #10324C;
  border: 2px solid #e6e8eb;
  border-radius: 999px;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  padding: 8px 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
}
.cookie-settings:hover { background: #eaf9f7; color: #5CD0C2; }

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16,50,76,0.31);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBg 0.29s cubic-bezier(.77,0,.18,1);
}
@keyframes fadeInBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px 0 rgba(16,50,76,0.22);
  padding: 42px 32px 32px 32px;
  max-width: 410px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookieSlideDown 0.33s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieSlideDown {
  from { transform: translateY(-70px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 16px;
  color: #10324C;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #5CD0C2;
  width: 19px;
  height: 19px;
  margin-top: 0;
}
.cookie-save-btn {
  background: #10324C;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 9px 30px;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
}
.cookie-save-btn:hover {
  background: #5CD0C2;
  color: #10324C;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 16px;
  background: none;
  border: none;
  color: #10324C;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover { color: #5CD0C2; }

/************************* 
  GENERAL ELEMENT STYLES  
**************************/
ul, ol { margin-bottom: 20px; }
ul li, ol li { margin-bottom: 9px; }
hr {
  border: 0;
  height: 1px;
  background: #e6e8eb;
  margin: 28px 0;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/***********************
  FORMS & INPUTS
***********************/
input, textarea, select {
  padding: 10px 12px;
  border: 1.2px solid #e6e8eb;
  border-radius: 7px;
  font-size: 1rem;
  font-family: 'Open Sans', 'Georgia', serif;
  margin-bottom: 14px;
  background: #fff;
  color: #232323;
  width: 100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #5CD0C2;
  box-shadow: 0 0 0 2px #eaf9f7;
}
label {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  color: #10324C;
  font-weight: 500;
  margin-bottom: 3px;
  display: block;
  letter-spacing: 0.01em;
}

/***********************
  RESPONSIVE DESIGN
***********************/
@media (max-width: 1180px) {
  .container { max-width: 980px; }
  .feature-grid li, .service-list li { min-width: 220px; }
}
@media (max-width: 991px) {
  .container { max-width: 740px; }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.23rem; }
  .container { padding: 0 10px; }
  .content-wrapper, .text-section { gap: 14px; }
  .hero { min-height: 200px; padding-top: 18px; padding-bottom: 14px; }
  .section, .features, .testimonials, .legal, .confirmation {
    margin-bottom: 38px;
    padding-left: 10px; padding-right: 10px; padding-top: 22px; padding-bottom: 18px;
  }
  .feature-grid, .benefit-grid, .feature-list, .wellness-list, .benefits-list, .service-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li, .feature-list li, .benefit-grid li, .service-list li {
    min-width: unset; max-width: 100%; width: 100%;
    padding: 22px 14px;
  }
  .main-nav ul, .footer-nav {
    gap: 8px;
    flex-wrap: wrap;
  }
  .text-image-section { flex-direction: column; gap: 16px; }
}
@media (max-width: 767px) {
  .main-nav ul, .main-nav a.button-primary { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .main-nav { padding-right: 0; }
  .hero { min-height: 140px; }
}
@media (max-width: 500px) {
  .hero h1 { font-size: 1.05rem; }
  .section, .features, .testimonials, .legal, .confirmation {
    padding-left: 5px; padding-right: 5px; padding-top: 14px; padding-bottom: 10px;
  }
  .card, .card-content, .testimonial-card, .service-list li {
    padding-left: 10px; padding-right: 10px;
  }
  .cookie-modal { padding: 18px 8px 18px 8px; min-width: 95vw; }
}

/***************************
  MICRO-INTERACTIONS
****************************/
a, button, .card, .feature-grid li, .testimonial-card, .service-list li {
  transition: box-shadow 0.20s, color 0.18s, background 0.18s, transform 0.21s;
}

/*****************
  PRINT STYLES
******************/
@media print {
  header, footer, .cookie-banner, .cookie-modal, .mobile-menu { display: none !important; }
  .section, .features, .hero, .testimonials, .container { box-shadow: none !important; background: #fff !important; }
}

/* Utility classes for spacing (if needed) */
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 32px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 32px !important; }
.pt-2 { padding-top: 16px !important; }
.pt-3 { padding-top: 32px !important; }
.pb-2 { padding-bottom: 16px !important; }
.pb-3 { padding-bottom: 32px !important; }

/* Hide visually (for accessibility) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}
