/* =========================
   CSS RESET & BASE
   ========================= */
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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #24405A;
  background: #F7FAFD;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  background-color: #F4E8DA;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: #376083;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #224266;
}
ul, ol {
  list-style: disc inside;
}
strong {
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #224266;
  font-weight: 600;
  letter-spacing: 0.005em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 10px; }
p, li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #305177;
}

/* ==============================
   COLORS & BRAND SOFT PASTEL THEME
   ============================== */
:root {
  --brand-primary: #224266;
  --brand-secondary: #6aa58b;
  --brand-accent: #F4E8DA;
  --brand-pastel-blue: #B3C8E6;
  --brand-pastel-green: #C8E6E0;
  --brand-pastel-pink: #F9E6F2;
  --brand-pastel-yellow: #FFF6DB;
  --brand-pastel-lavender: #EDE6FA;
  --text-dark: #224266;
  --text-body: #305177;
  --text-light: #fff;
  --soft-shadow: 0 4px 18px rgba(53,79,117,0.11), 0 1.5px 3px rgba(106,165,139,0.09);
  --card-radius: 18px;
}

/* Layout wrapper */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* SECTION SPACING (Mandatory) */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
header {
  background: var(--brand-accent, #F4E8DA);
  box-shadow: 0 2px 16px rgba(34,66,102,0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 102;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.desktop-nav a:not(.cta-primary) {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  padding: 9px 11px;
  border-radius: 10px;
  color: #305177;
  transition: background 0.18s, color 0.18s;
}
.desktop-nav a:not(.cta-primary):hover, .desktop-nav a:not(.cta-primary):focus {
  background: var(--brand-pastel-blue);
  color: var(--brand-primary);
}
.desktop-nav img {
  height: 38px;
  width: auto;
  margin-right: 12px;
  vertical-align: middle;
}
.cta-primary {
  background: linear-gradient(90deg, var(--brand-secondary) 60%, #abd5ae 100%);
  color: var(--text-light);
  padding: 11px 26px;
  border-radius: 13px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  margin-left: 8px;
  box-shadow: 0 2px 12px rgba(80, 185, 150, 0.10);
  transition: background 0.18s, transform 0.18s;
  border: none;
  outline: none;
  cursor: pointer;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #5ca485 50%, #6AA58B 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 4px 16px rgba(80, 185, 150, 0.14);
}

/* =============================
   MOBILE NAVIGATION
   ============================= */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 21px;
  top: 22px;
  background: var(--brand-secondary);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 140;
  box-shadow: 0 2px 7px rgba(106,165,139,0.12);
  transition: background 0.15s, color 0.13s, transform 0.19s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #457e65;
  outline: 2px solid #396157;
  color: var(--brand-accent);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  max-width: 100vw;
  background: linear-gradient(100deg, #F4E8DA 70%, #C8E6E0 110%);
  box-shadow: 0 15px 50px rgba(34,66,102,0.17);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.41,.89,.52,1.09);
  z-index: 2222;
  padding: 0 0 60px 0;
  opacity: 0.96;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #224266;
  margin: 23px 28px 10px 0;
  cursor: pointer;
  z-index: 2230;
  transition: color 0.18s, background 0.18s;
  padding: 3px 8px;
  border-radius: 9px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-secondary);
  background: var(--brand-pastel-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  width: 92%;
  margin: 0 0 0 28px;
}
.mobile-nav a {
  color: #224266;
  font-size: 1.18rem;
  padding: 12px 0 12px 5px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.14s, color 0.15s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-pastel-blue);
  color: var(--brand-secondary);
}
/* Hide desktop nav on small screens */
@media (max-width: 1000px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
}
/* ========================
   HERO & MAIN SECTIONS
   ======================== */
.hero {
  background: linear-gradient(140deg, #FFF6DB 50%, #EDE6FA 120%);
  padding-top: 60px;
  padding-bottom: 46px;
  border-radius: 0 0 34px 34px;
  box-shadow: 0 2px 35px rgba(186,201,230,0.12);
  margin-bottom: 50px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: #224266;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.35rem;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.21;
  text-shadow: 0 2px 12px #fff0, 0 1px 0 #feffff;
}
.hero p {
  color: #315672;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 9px;
}
.hero .cta-primary {
  margin-top: 14px;
}

/* Features section (cards or grid) */
.features .feature-grid, .services .service-list, .services .service-grid, .features .habit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width:800px) {
  .features .feature-grid,
  .services .service-list,
  .services .service-grid,
  .features .habit-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.features .feature-grid > div, .features .habit-grid > div, .services .service-list > div, .services .service-grid > div {
  background: var(--brand-pastel-blue, #B3C8E6);
  border-radius: var(--card-radius);
  box-shadow: var(--soft-shadow);
  padding: 26px 22px 22px 22px;
  min-width: 220px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.17s, background 0.20s;
  position: relative;
}
.features .feature-grid > div:hover, .features .habit-grid > div:hover, .services .service-list > div:hover, .services .service-grid > div:hover {
  box-shadow: 0 4px 28px rgba(53,79,117,0.14);
  background: var(--brand-pastel-green, #C8E6E0);
  transform: translateY(-2px) scale(1.025);
}
.features .feature-grid img, .features .habit-grid img {
  height: 44px;
  width: 44px;
  margin-bottom: 12px;
}

/* Secondary cards (workshop, highlights, etc.) */
.service-card, .workshop-schedule, .workshop-highlights, .habit-breakdown, .success-stories, .downloadable-checklist, .about .qualifications {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--soft-shadow);
  padding: 24px 22px;
  margin-bottom: 20px;
  margin-top: 12px;
  font-size: 1.05rem;
}

.service-card h3, .workshop-schedule h3, .workshop-highlights h3, .habit-breakdown h3, .success-stories h3 {
  font-size: 1.19rem;
  color: var(--brand-secondary);
  margin-bottom: 10px;
  font-weight: 600;
}

.workshop-schedule ul, .workshop-highlights ul, .habit-breakdown ul, .success-stories ul {
  margin-top: 7px;
  padding-left: 13px;
}

/*========================
   CARDS & FLEXBOX LISTS
  ========================*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--card-radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
  padding: 28px 22px 22px 22px;
  flex: 1 1 240px;
  min-width: 220px;
  transition: box-shadow 0.17s, background 0.17s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 7px 36px rgba(34,66,102,0.09);
  background: var(--brand-pastel-yellow);
  transform: translateY(-2px) scale(1.017);
}
/* Content grids and flex sections */
.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;
    gap: 20px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
/* About - qualifications icons */
.about .qualifications {
  display: flex;
  gap: 22px;
  background: var(--brand-pastel-pink, #f9e6f2);
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
}
.about .qualifications img {
  height: 38px;
  width: 38px;
  filter: drop-shadow(0 2px 8px rgba(200, 230, 224, 0.33));
}
/* === Cards in .services list or grid === */
.services .service-list > div, .services .service-grid > div {
  background: var(--brand-pastel-green, #C8E6E0);
}
.services .service-list > div:hover, .services .service-grid > div:hover {
  background: var(--brand-pastel-blue, #B3C8E6);
}
.services .service-list a, .services .service-grid a {
  color: #224266;
  font-weight: 600;
  font-size: 1.03rem;
  margin-top: 1em;
  transition: color 0.17s;
}
.services .service-list a:hover, .services .service-list a:focus, .services .service-grid a:hover {
  color: var(--brand-secondary);
}

/* TIPS LIST (Haushaltstipps) */
.tips-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: 8px 0 30px 0;
}
.tips-list li {
  background: var(--brand-pastel-yellow);
  border-radius: var(--card-radius);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 17px;
  box-shadow: var(--soft-shadow);
  margin-bottom: 0;
}
.tips-list img {
  height: 34px;
  width: 34px;
  margin-right: 9px;
}
.downloadable-checklist {
  display: flex;
  align-items: center;
  background: var(--brand-pastel-green);
  border-radius: 10px;
  padding: 13px 18px;
  margin-top: 9px;
  box-shadow: 0 1.5px 6px #ccd9c8ab;
}
.downloadable-checklist a {
  color: #224266;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1.06rem;
  transition: color 0.16s;
}
.downloadable-checklist a:hover {
  color: var(--brand-secondary);
}

/* ===============================
   TESTIMONIALS & SPECIAL CARDS
   =============================== */
.testimonials .testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--soft-shadow);
  margin-bottom: 20px;
  margin-top: 12px;
  position: relative;
}
.testimonials .testimonial-card .testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.testimonial-content p {
  font-size: 1.12rem;
  color: var(--brand-primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 7px;
}
.testimonial-author {
  font-weight: 500;
  color: #3b607a;
  font-size: 1rem;
  margin-bottom: 2px;
}
.testimonial-rating {
  color: #EDB100;
  font-size: 1.05rem;
  margin-top: 2px;
  font-weight: 600;
}
/* Light on dark contrast for text enforced by always using light bg for cards */

blockquote {
  background: var(--brand-pastel-lavender);
  border-left: 4px solid #B3C8E6;
  color: #224266;
  padding: 13px 21px 13px 15px;
  border-radius: 9px;
  font-style: italic;
  margin-bottom: 12px;
}
blockquote span {
  display: block;
  font-size: 0.99rem;
  font-style: normal;
  margin-top: 6px;
  color: #6b868d;
}

/* ============ CTA Section ============ */
.cta {
  background: linear-gradient(100deg, #EDE6FA 60%, #FFF6DB 125%);
  padding: 40px 20px;
  border-radius: 23px;
  box-shadow: 0 2px 22px rgba(212,217,236,0.09);
  margin-bottom: 40px;
  text-align: center;
}
.cta .content-wrapper {
  align-items: center;
  gap: 9px;
}
.secondary-contact-info {
  font-size: 1rem;
  color: #426ea1;
  margin-top: 13px;
  opacity: 0.88;
}

/* Legal / Contact / Simple sections */
.legal, .contact, .confirmation {
  background: #fff;
  border-radius: 22px;
  padding: 30px 18px 43px 18px;
  margin-bottom: 50px;
  box-shadow: 0 0.5px 8px #e0e6ee61;
}
.legal .text-section,
.contact-details.text-section,
.map-embed {
  margin-top: 18px;
  font-size: 1.03rem;
}
@media (max-width: 600px) {
  .legal, .contact, .confirmation {
    padding: 14px 6px 22px 6px;
    border-radius: 14px;
  }
}

.confirmation .next-steps-info {
  margin: 19px 0 19px 0;
  background: var(--brand-pastel-blue);
  border-radius: 11px;
  padding: 12px 18px;
  font-size: 1.01rem;
  color: #244266;
}

/* Pricing tables */
.pricing-table {
  margin-top: 27px;
  margin-bottom: 20px;
  overflow-x: auto;
}
.pricing-table table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0.8px 7px #e0e6ee43;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 13px 19px;
  border-bottom: 1px solid #e6eafa;
  text-align: left;
}
.pricing-table th {
  background: var(--brand-pastel-green);
  color: #224266;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--brand-accent, #F4E8DA);
  padding: 36px 0 21px 0;
  box-shadow: 0 -1px 8px #c2c1be0e;
  margin-top: 30px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #457e65;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--brand-pastel-green);
  color: #224266;
}
footer small {
  color: #36645d;
  font-size: 0.97rem;
}

/* ================================
   BUTTONS
   ================================ */
button, .cta-primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
}
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ================================
   MANDATORY FLEX LAYOUTS CLASSES
   ================================ */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
}
@media (max-width: 1000px) {
  .container { max-width: 700px; }
  .footer-nav { flex-direction: column; gap: 10px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.19rem; }
  .card, .features .feature-grid > div, .services .service-list > div, .services .service-grid > div {
    padding: 18px 13px 15px 13px;
    min-width: 0;
    flex: 1 1 90%;
  }
  .section, section, .hero, .cta {
    padding: 24px 7px !important;
    border-radius: 16px;
    margin-bottom: 40px;
  }
  .about .qualifications {
    gap: 11px;
    padding: 12px 7px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
    padding: 13px 9px;
  }
  .container { max-width: 99vw; }
  .downloadable-checklist { padding: 9px 7px; }
}
@media (max-width: 500px) {
  .hero h1 { font-size: 1.17rem; }
  .footer-nav { gap: 7px; }
  .container { padding-left: 2px; padding-right: 2px; }
}

/* ================================
   SMOOTH TRANSITIONS
   ================================ */
*, *:before, *:after {
  transition-property: background, color, box-shadow, transform;
  transition-duration: 0.17s;
}

/* ==========================
   MICROINTERACTIONS
   ========================== */
.card, .features .feature-grid > div, .services .service-list > div, .testimonial-card, .cta-primary {
  transition: box-shadow 0.17s, background 0.22s, transform 0.18s;
}
.cta-primary {
  transition: background 0.18s, color 0.18s, transform 0.19s;
}
/* slight scale on hover for interactive CTAs */
.cta-primary:active {
  transform: scale(0.97);
  box-shadow: 0 2px 6px #abd5ae6f;
}

/* ==========================
   COOKIE CONSENT BANNER
   ========================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(100deg, #F4E8DA 80%, #C8E6E0 140%);
  color: #224266;
  box-shadow: 0 -2px 18px rgba(34,66,102,0.08);
  z-index: 3000;
  padding: 0;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100vw;
  min-height: 0px;
  opacity: 1;
  transition: bottom 0.29s cubic-bezier(.37,.82,.44,1), opacity 0.29s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  bottom: -80px;
}
.cookie-banner-inner {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: none;
  padding: 30px 18px;
  align-items: flex-start;
}
.cookie-banner-inner p {
  margin-bottom: 9px;
  color: #224266;
  font-size: 1rem;
}
.cookie-banner-buttons {
  display: flex;
  gap: 15px;
}
.cookie-banner button, .cookie-banner .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 21px;
  background: #6AA58B;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.15s, transform 0.12s, color 0.13s;
}
.cookie-banner button:hover, .cookie-banner .btn:hover {
  background: #224266;
  color: #fff;
  transform: translateY(-1.6px) scale(1.03);
}
.cookie-banner .btn.secondary {
  background: var(--brand-pastel-blue);
  color: #224266;
  border: 1px solid #B3C8E6;
}
.cookie-banner .btn.secondary:hover, .cookie-banner .btn.secondary:focus {
  background: var(--brand-pastel-green);
  color: #224266;
}

/* Cookie modal overlay */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(44,78,120,0.23);
  z-index: 3333;
  align-items: center;
  justify-content: center;
  transition: opacity 0.27s;
}
#cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  padding: 34px 26px 24px 26px;
  border-radius: 19px;
  box-shadow: 0 9px 48px #b3c8e666;
  min-width: 330px;
  max-width: 97vw;
  color: #224266;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.cookie-modal-content h2 {
  font-size: 1.32rem;
  margin-bottom: 6px;
}
.cookie-modal-content .category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #224266;
}
.cookie-modal-content input[type=checkbox] {
  accent-color: #6AA58B;
  width: 17px;
  height: 17px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 8px;
}
.cookie-modal-content .close-modal {
  position: absolute;
  top: 10px; right: 17px;
  font-size: 1.2rem;
  color: #6AA58B;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.13s;
  padding: 0 5px;
  border-radius: 5px;
}
.cookie-modal-content .close-modal:hover, .cookie-modal-content .close-modal:focus {
  color: #224266;
  background: #f4e8da50;
}
#cookie-modal .essential-info {
  font-size: 0.95rem;
  color: #146055;
  margin-left: 25px;
}
@media (max-width: 500px) {
  .cookie-modal-content {
    padding: 14px 4vw 10px 3vw;
    border-radius: 13px;
    min-width: 0;
  }
}

/* ==========================
   FORM ELEMENTS
   ========================== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border: 1.4px solid #B3C8E6;
  background: #fff;
  border-radius: 7px;
  padding: 10px 13px;
  margin-bottom: 11px;
  font-size: 1rem;
  width: 100%;
  color: #224266;
  transition: border 0.14s;
}
input:focus, textarea:focus, select:focus {
  border: 1.8px solid #6AA58B;
  outline: none;
}
/* =====================
   UTILITIES
   ===================== */
.text-section {
  margin-top: 10px;
  margin-bottom: 10px;
}
section ul {
  margin-left: 16px;
}

/* =====================
   SCROLLBAR STYLES
   ===================== */
::-webkit-scrollbar {
  width: 9px;
  background: #f4e8da;
}
::-webkit-scrollbar-thumb {
  background: #B3C8E6;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #8faecc;
}

/* ==============
   PRINT SUPPORT
   ==============
*/
@media print {
  header, footer, .mobile-menu, .cookie-banner, #cookie-modal { display: none !important; }
  body, .container, .section, main { background: #fff !important; }
}
