/* ===========================================================================
   Noble Returns 45+ StyleSheet
   modern_bold Style: Bold, modern, geometric, strong contrast, bright accents
   Only flexbox used for layouts as required
   =========================================================================== */

/* --- 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;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #e7ecf1;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #22405e;
  background: #e7ecf1;
  min-height: 100vh;
  line-height: 1.6;
  font-weight: 400;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #22405e;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus {
  outline: 2px solid #df931e;
  outline-offset: 2px;
}

/* --- TYPOGRAPHY BOLD + HIERARCHY --- */
h1 {
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #22405e;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h2 {
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #22405e;
  letter-spacing: -0.5px;
}
h3 {
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #22405e;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #22405e;
}
p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #22405e;
}
strong, b {
  font-weight: bold;
}
.subheadline {
  font-size: 1.25rem;
  font-weight: 500;
  color: #22405e;
  margin-bottom: 24px;
}

/* ---- CONTAINER & SECTION SPACING ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(34, 64, 94, 0.06);
}
@media (max-width: 768px) {
  .section, section {
    padding: 24px 8px;
    margin-bottom: 32px;
    border-radius: 14px;
  }
  .container {padding-left: 8px; padding-right: 8px;}
}

/* --- HEADER --- */
header {
  background: #ffffff;
  border-bottom: 4px solid #df931e;
  box-shadow: 0 2px 10px rgba(34, 64, 94, 0.05);
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 20px;
}

/* --- NAVIGATION --- */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #22405e;
  padding: 12px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:active {
  color: #df931e;
}

.btn {
  display: inline-block;
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 24px rgba(34, 64, 94, 0.10);
  text-align: center;
  margin-left: 28px;
  margin-right: 0;
}
.btn-primary {
  background: #22405e;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #df931e;
  color: #fff;
  box-shadow: 0 2px 16px rgba(223,147,30,0.18);
  transform: translateY(-2px) scale(1.03);
}
.btn-accent {
  background: #df931e;
  color: #fff;
}
.btn-accent:hover, .btn-accent:focus {
  background: #22405e;
  color: #fff;
  box-shadow: 0 4px 24px rgba(34, 64, 94, 0.11);
  transform: scale(1.03);
}
.link-accent {
  color: #df931e;
  font-weight: bold;
  transition: color 0.18s;
}
.link-accent:hover, .link-accent:focus {
  color: #22405e;
  text-decoration: underline;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #22405e;
  cursor: pointer;
  padding: 4px 16px;
  z-index: 120;
  margin-left: 12px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #df931e;
  background: #e7ecf1;
  border-radius: 8px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: 0 0 0 100vw rgba(34,64,94,0.22);
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.52,1.34,.36,1), box-shadow 0.2s;
  z-index: 210;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 8px 48px rgba(34,64,94,0.26);
}
.mobile-menu-close {
  font-size: 2.25rem;
  color: #22405e;
  background: transparent;
  border: none;
  align-self: flex-end;
  margin: 18px 18px 0 0;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #df931e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0 0 36px;
}
.mobile-nav a {
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #22405e;
  padding: 14px 0;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e7ecf1;
  color: #df931e;
}

@media (max-width: 1024px) {
  .main-nav, .btn.btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* ---- HERO SECTION ---- */
.hero {
  background: #22405e;
  color: #fff;
  border-radius: 32px;
  display: flex;
  align-items: center;
  min-height: 360px;
  margin-top: 28px;
  box-shadow: 0 12px 40px rgba(34,64,94,0.12);
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero .container {
  flex-direction: column;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero h1, .hero .subheadline {
  color: #fff;
}
.hero .btn-accent {
  background: #df931e;
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  margin-top: 18px;
}
.hero .btn-accent:hover, .hero .btn-accent:focus {
  background: #fff;
  color: #22405e;
  box-shadow: 0 3px 18px rgba(223,147,30,0.13);
}

@media (max-width: 1024px) {
  .hero {
    padding-top: 32px; padding-bottom: 32px;
    border-radius: 18px;
  }
}
@media (max-width: 600px) {
  .hero {
    border-radius: 9px; min-height: 160px;
    padding-top: 20px; padding-bottom: 20px;
    margin-top: 12px;
  }
  .hero h1 {font-size: 1.3rem;}
}

/* ---- TRUSTBAR ---- */
.trustbar, .trustbar .container {
  background: #e7ecf1;
  border-radius: 24px;
  box-shadow: none;
}
.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}
.badge {
  background: #fff;
  color: #22405e;
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  padding: 10px 18px 10px 12px;
  box-shadow: 0 2px 6px rgba(34,64,94,0.09);
  margin-bottom: 20px;
}
.badge img { width: 28px; height: 28px; }
@media (max-width: 780px) {
  .trust-badges {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .badge {font-size: 0.95rem;}
}

/* ---- FEATURES ---- */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
  margin-bottom: 20px;
}
.feature {
  background: #22405e;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(34,64,94,.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  flex-basis: calc(25% - 21px);
  min-width: 230px;
  padding: 28px 16px;
  margin-bottom: 20px;
  transition: transform 0.15s, box-shadow 0.18s;
  position: relative;
}
.feature img {
  width: 54px;
  height: 54px;
  margin-bottom: 6px;
}
.feature h3 {
  color: #fff;
  font-size: 1.15rem;
  text-align: center;
  margin-bottom: 8px;
}
.feature p {
  font-size: 0.97rem;
  text-align: center;
}
.feature:hover {
  box-shadow: 0 8px 36px rgba(223,147,30,0.12);
  background: #df931e;
  color: #fff;
  transform: translateY(-3px) scale(1.02);
}
@media (max-width: 1024px) {
  .features .feature-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .feature {
    flex-basis: calc(50% - 12px);
    min-width: 180px;
  }
}
@media (max-width: 600px) {
  .features .feature-grid {
    flex-direction: column;
    gap: 10px;
  }
  .feature {
    flex-basis: 100%;
    min-width: 120px;
    padding: 18px 8px;
    border-radius: 12px;
  }
}
.feature-descriptions {
  color: #22405e;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 18px;
  margin-bottom: 0;
}

/* --- SERVICE FILTERS FORM PREVIEW --- */
.service_filters .filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  margin-top: 10px;
}
.service_filters select, .service_filters input[type="text"] {
  padding: 10px 16px;
  border: 2px solid #22405e;
  border-radius: 8px;
  min-width: 164px;
  font-size: 1rem;
  background: #fff;
  color: #22405e;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.service_filters button {
  background: #df931e;
  color: #fff;
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  transition: background 0.18s, transform 0.14s;
  cursor: pointer;
}
.service_filters button:hover {
  background: #22405e;
  color: #fff;
  transform: scale(1.06);
}
@media (max-width: 600px) {
  .service_filters .filters {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .service_filters select, .service_filters input[type="text"] {
    min-width: 120px;
    font-size: 0.97rem;
  }
}

/* ---- SPECIALISTS CAROUSEL / LIST ---- */
.specialists-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 24px;
}
.profile-card {
  background: #fff;
  border: 2px solid #e7ecf1;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(34,64,94,0.07);
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  padding: 20px 24px;
  margin-bottom: 20px;
  min-width: 240px;
  flex-basis: calc(33% - 19px);
  transition: box-shadow 0.14s, border 0.14s, transform 0.13s;
}
.profile-card:hover {
  box-shadow: 0 8px 28px rgba(34,64,94,.12);
  border: 2px solid #df931e;
  transform: scale(1.01) translateY(-2px);
}
.profile-card img {
  width: 68px; height: 68px; border-radius: 50%; background: #e7ecf1; margin-right: 0;
}
.profile-card h3 {
  margin: 0 0 8px 0;
  color: #22405e;
}
.rating {
  font-weight: bold;
  color: #df931e;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0;
}
.rating img {height: 18px; width: 18px;}
.availability-info,
.review-preview,
.reviews-section {
  font-size: 0.98rem;
  margin-top: 6px;
  margin-bottom: 2px;
  color: #22405e;
}
.review-preview, .reviews-section {
  font-style: italic;
  color: #22405e;
  font-size: 0.97rem;
}
@media (max-width: 1024px) {
  .specialists-list {
    flex-direction: column;
    gap: 15px;
  }
  .profile-card {
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 10px;
  }
  .profile-card img {
    width: 52px;
    height: 52px;
  }
}

/* ---- CARD CONTAINER ---- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(34,64,94,0.09);
  padding: 22px 18px;
  margin-bottom: 20px;
  position: relative;
}

/* --- GENERAL FLEX PATTERNS --- */
.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) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

/* --- FEATURES LIST PATTERN --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---- TABLES (PREISE, DATENSCHUTZ) ---- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px 0;
  font-size: 1rem;
}
thead th {
  background: #22405e;
  color: #fff;
  font-weight: bold;
  padding: 14px 12px;
  text-align: left;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
tbody td {
  background: #fff;
  padding: 13px 12px;
  border-bottom: 2px solid #e7ecf1;
  font-size: 0.96rem;
  color: #22405e;
}
tbody tr:hover {
  background: #e7ecf1;
}
@media (max-width: 600px) {
  table, thead, tbody, th, td, tr {display: block;}
  thead {display: none;}
  tr {margin-bottom: 12px;}
  td {padding: 8px!important;}
}

/* ---- CTA Form / Call To Action ---- */
.cta-form {
  background: #df931e;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 32px rgba(223,147,30,0.11);
  text-align: left;
}
.cta-form h2,
.cta-form ul,
.cta-form a {
  color: #fff !important;
}
.cta-form .btn-primary {
  background: #22405e;
  color: #fff;
  border-radius: 26px;
  margin-top: 16px;
}
.cta-form .btn-primary:hover, .cta-form .btn-primary:focus {
  background: #fff;
  color: #df931e;
}

/* ---- KONTAKT INFO ---- */
.contact-preview ul, .contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-preview li, .contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #22405e;
}
.contact-preview img, .contact-info img {
  width: 28px;
  height: 28px;
  margin-right: 4px;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: #e7ecf1;
  border-radius: 28px;
  padding-top: 30px;
  padding-bottom: 30px;
  box-shadow: 0 4px 30px rgba(223,147,30,0.08);
}
.testimonials .testimonial-card {
  background: #fff;
  color: #22405e;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(34,64,94,0.07);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.5;
}
.testimonials .testimonial-card p {
  color: #22405e;
  font-weight: 500;
  font-size: 1.11rem;
}
.testimonials .customer-info {
  margin-left: 18px;
  color: #df931e;
  font-weight: bold;
  font-size: 0.96rem;
}
@media (max-width: 680px) {
  .testimonials .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
  }
  .testimonials .customer-info {
    margin-left: 0;
  }
}

/* --- REVIEW SUMMARY --- */
.review-summary {
  margin-top: 20px;
  font-size: 1.04rem;
  color: #22405e;
  font-weight: 600;
  background: #fff8eb;
  padding: 12px 18px;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 0 1px 4px rgba(223,147,30,0.07);
}

/* --- FOOTER --- */
footer {
  background: #22405e;
  color: #fff;
  padding: 34px 0 10px 0;
  border-top: 7px solid #df931e;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand img {
  width: 45px; height: 45px;
  background: #fff;
  border-radius: 22px;
  padding: 6px;
}
.brand-tagline {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
.footer-info span {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #df931e;
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: color 0.18s;
  padding: 2px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.legal {
  color: #e7ecf1;
  font-size: 0.97rem;
  margin-top: 4px;
}
@media (max-width:700px){
  footer .container{gap:14px;}
  .footer-brand img{width:33px;height:33px;}
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #22405e;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 32px;
  box-shadow: 0 -4px 28px rgba(34,64,94,0.13);
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieSlideIn 0.45s cubic-bezier(.52,1.12,.48,1.02);
}
@keyframes cookieSlideIn {
  0%{transform: translateY(90px); opacity:0;}
  100%{transform: translateY(0); opacity:1;}
}
.cookie-banner p {
  margin: 0;
  font-size: 1.02rem;
  color: #fff;
  flex: 1 1 auto;
  max-width: 640px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  padding: 9px 22px;
  margin: 0;
  cursor: pointer;
  transition: background 0.19s, color 0.18s, box-shadow 0.16s;
}
.cookie-banner .accept-all {
  background: #df931e;
  color: #fff;
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: #fff;
  color: #df931e;
  box-shadow: 0 2px 10px rgba(223,147,30,0.14);
}
.cookie-banner .reject-all {
  background: #fff;
  color: #22405e;
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: #df931e;
  color: #fff;
}
.cookie-banner .settings {
  background: #e7ecf1;
  color: #22405e;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #22405e;
  color: #fff;
  border: 1px solid #e7ecf1;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 10px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 7px;
    width: 100%;
  }
  .cookie-banner p {font-size: 0.97rem;}
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0;top: 0;width: 100vw;height: 100vh;
  background: rgba(34,64,94,.20);
  z-index: 10000;
  display: none;
}
.cookie-modal-overlay.open {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .4s cubic-bezier(.56,1.32,.44,1);
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #22405e;
  border-radius: 18px;
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 8px 32px rgba(34,64,94,0.22);
  padding: 36px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalSlide 0.39s cubic-bezier(.52,1.18,.52,1.04);
  position: relative;
}
@keyframes modalSlide {
  0% { transform: translateY(160px); opacity:0; }
  100% { transform: translateY(0);opacity:1; }
}
.cookie-modal h2 {
  margin-bottom: 8px;
  color: #df931e;
  font-size: 1.32rem;
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
}
.cookie-category {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1.04rem; color: #22405e; font-weight: 500;
}
.cookie-category .always-on {
  color: #22405e;
  font-size: 0.94rem;
  opacity: 0.82;
  padding-left: 5px;
  font-weight: 500;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .modal-actions button {
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  padding: 8px 21px;
  margin: 0;
  cursor: pointer;
  transition: background 0.17s,color .16s;
}
.cookie-modal .accept-modal {
  background: #df931e;
  color: #fff;
}
.cookie-modal .accept-modal:hover {
  background: #22405e; color: #fff;
}
.cookie-modal .close-modal {
  background: #e7ecf1;
  color: #22405e;
}
.cookie-modal .close-modal:hover {
  background: #fff; color: #22405e;
}
.cookie-modal .modal-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #22405e;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .modal-close-btn:hover {
  color: #df931e;
}

/* ---- GENERAL LISTS & MARKUP ---- */
ul, ol {
  margin-left: 24px;
  padding-left: 0;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #22405e;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ---- FAQ (GARANTIEN) ---- */
dt {
  font-weight: bold;
  font-size: 1.04rem;
  margin-top: 12px;
  color: #df931e;
}
dd {
  margin-left: 0px;
  margin-bottom: 10px;
  color: #22405e;
  font-size: .99rem;
}

/* ---- COLOR UTILITIES ---- */
.bg-primary { background: #22405e!important; }
.bg-accent { background: #df931e!important; color: #fff!important; }
.bg-secondary { background: #e7ecf1!important; color: #22405e!important; }
.text-accent { color: #df931e!important; }
.text-primary { color: #22405e!important; }
.text-secondary { color: #e7ecf1!important; }

/* ---- FORMS GENERIC ---- */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 2px solid #22405e;
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: 16px;
  background: #fff;
  color: #22405e;
  transition: border 0.15s, box-shadow 0.13s;
}
input:focus, select:focus, textarea:focus {
  border-color: #df931e;
  outline: none;
  box-shadow: 0 0 0 2px #ffeacc;
}
button:focus {
  outline: 2px solid #df931e;
  outline-offset: 3px;
}

/* ---- ACCENT HR / RULES ---- */
hr {
  border: none;
  border-top: 2px solid #df931e;
  margin: 38px 0;
}

/* ---- SPACING HELPERS for FLEX COMPONENTS ---- */
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-60 { margin-bottom: 60px; }
.mt-24 { margin-top: 24px; }
.mt-16 { margin-top: 16px; }
.gap-20 { gap: 20px !important; }
.gap-24{ gap:24px !important; }
.gap-28{ gap:28px !important; }

/* ---- RESPONSIVE HELPERS ---- */
@media (max-width: 1024px) {
  h1{font-size:2rem;}
  h2{font-size:1.4rem;}
}
@media (max-width: 700px) {
  h1,.h1{font-size:1.25rem;}
  h2{font-size:1.1rem;}
  h3{font-size:1.04rem;}
  .section, section {
    margin-bottom: 18px;
    padding: 12px 3px;
  }
  .container {padding-left:4px;padding-right:4px;}
}

/* ---- PRINT MODE ---- */
@media print{
  header,footer,.cookie-banner,.mobile-menu{display:none !important;}
  body{background:white;color:black;}
}
