/* =====================================================================
   Metal Whisper – Soft Pastel Flexbox-Only CSS UI Kit
=======================================================================
   - Modern pastel color palette
   - Mobile Burger Menu & Cookie Banner
   - Responsive, Flexbox-only layouts (NO CSS grid/columns)
   - Brand fonts: Montserrat (display), Roboto (body)
   - UX: Buttons, Cards, Testimonials, Navigation
==================================================================== */
/* ------------------------------------------------
   CSS RESET & BASELINE
-------------------------------------------------- */
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,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,main,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 {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background-color: #FAFAFF;
  color: #263238;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; display: block; height: auto; border:0;}
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ol, ul { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  background: none;
  border: none;
  color: inherit;
}
button { cursor: pointer; }

/* ------------------------------------------------
   COLOR PALETTE (soft pastel with brand accent)
-------------------------------------------------- */
:root {
  --primary: #204945;
  --primary-dark: #193734;
  --secondary: #e4e6ea;
  --accent: #F6B800;
  --accent-light: #FFEBC6;
  --danger: #ef8aa2;
  --success: #b0e8da;
  --pastel-mint: #e6f7f5;
  --pastel-blue: #d7eaf8;
  --pastel-yellow: #FFFBE9;
  --pastel-pink: #FCE3EC;
  --pastel-lavender: #EFE5FC;
  --testimonial-bg: #fff;
  --testimonial-border: #e2e4f5;
  --shadow: 0 6px 24px rgba(143, 160, 180, 0.07), 0 1.5px 8px rgba(206, 220, 222, 0.05);
}

/* ------------------------------------------------
   TYPOGRAPHY (Montserrat display, Roboto body)
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Roboto:400,500&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.02em;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 16px;
}
h3 {
  font-size: 1.375rem; /* 22px */
  font-weight: 600;
  margin-bottom: 10px;
}
h4, h5, h6 { font-size: 1.125rem; }

p, ul, ol, .text-section, .content-wrapper {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #263238;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 12px;
}

strong, b { font-weight: 700; color: var(--primary-dark); }

.text-section ul,
.text-section ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
.text-section ul li,
.text-section ol li { margin-bottom: 8px; }

/* ------------------------------------------------
   CONTAINER & LAYOUT
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

/* ------------------------------------------------
   HEADER & NAVIGATION
-------------------------------------------------- */
header {
  background: linear-gradient(90deg, #e6f7f5 0%, #fafaff 75%);
  box-shadow: 0 2px 16px rgba(32,73,69,0.04);
}
header .container {
  min-height: 76px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.logo-header img { height: 46px; width: auto; }
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 10px;
  transition: background .2s, color .2s;
}
nav a.active, nav a:hover, nav a:focus {
  background: var(--accent-light);
  color: var(--accent);
  outline: none;
}
.btn-primary {
  display: inline-block;
  padding: 14px 34px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  border-radius: 14px;
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(246,184,0,0.06);
  transition: background .18s, color .18s, transform .18s;
  border: none;
  margin-left: 16px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #ffe07a;
  color: var(--primary-dark);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  display: inline-block;
  padding: 12px 26px;
  font-size: 1rem;
  border-radius: 12px;
  background: var(--pastel-lavender);
  color: var(--primary);
  transition: background .18s, color .18s, box-shadow .18s;
  border: 1.5px solid var(--accent-light);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--accent-light);
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(206,180,255,0.15);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  border-radius: 8px;
  font-size: 2.1rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin: 12px 14px 12px auto;
  z-index: 99;
  border: none;
  box-shadow: 0 2px 10px rgba(246,184,0,0.05);
  transition: background .22s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:hover { background: #ffe07a; }
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(230,247,245,0.98);
  z-index: 1003;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.40s cubic-bezier(.88,.02,.23,.99), opacity 0.25s;
  padding: 40px 24px 24px 24px;
  pointer-events: none; /* initially hidden */
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 22px;
  font-size: 2rem;
  background: transparent;
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent-light);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  width: 100%;
  margin-top: 54px;
}
.mobile-nav a {
  font-size: 1.33rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 0 10px 4px;
  color: var(--primary);
  border-radius: 10px;
  min-width: 160px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent-light);
  color: var(--accent);
}

@media (max-width: 990px) {
  header .container {
    gap: 16px;
  }
  nav {
    gap: 14px;
  }
  .btn-primary { margin-left: 0; }
}
@media (max-width: 880px) {
  header .container { gap: 10px; }
  nav { gap: 8px; }
}
@media (max-width: 768px) {
  header .container { flex-wrap: wrap; }
  nav, header nav { display: none; }
  .btn-primary { display:none; }
  .mobile-menu-toggle {
    display: flex;
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 1002;
  }
}

/* SHOW ONLY MOBILE MENU ON SMALL SCREENS */
@media (max-width: 768px) {
  .mobile-menu {
    display: flex;
    padding-top: 72px;
  }
}
/* ------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero {
  background: linear-gradient(91deg, #efe5fc 0%, #e6f7f5 100%);
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(32,73,69,0.02);
  margin-bottom: 54px;
  padding: 70px 0 44px 0;
}
.hero .container, .hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 12px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.4rem;
  margin-bottom: 14px;
  line-height: 1.22;
}
.hero p {
  font-size: 1.2rem;
  color: #3b4b4f;
  margin-bottom: 22px;
}
@media (max-width: 576px) {
  .hero {
    padding: 36px 0 20px 0;
    min-height: 180px;
    margin-bottom: 30px;
  }
  .hero h1 { font-size: 1.38rem; }
  .hero p { font-size: 0.98rem; }
}

/* ------------------------------------------------
   GENERIC SECTION STYLES
-------------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.section {
  /* Overwrite in mandatory .section containers only */
}
.section:last-child, section:last-child { margin-bottom: 0; }

/* SPACING & FLEX PATTERNS (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 26px 22px;
  min-width: 260px;
  flex: 1 1 290px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 30px rgba(32,73,69,0.07), 0 1.5px 8px rgba(246,184,0,0.13);
  transform: translateY(-2px) 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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px 20px 24px;
  background: var(--testimonial-bg);
  border-radius:24px;
  border: 1.5px solid var(--testimonial-border);
  box-shadow: 0 2px 14px rgba(210,220,248,0.08);
  margin-bottom: 28px;
  min-width: 255px;
  flex: 1 1 300px;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: #232436;
  font-size: 1.075rem;
  font-style: italic;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary-dark);
  font-size: .99rem;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 24px rgba(246,184,0,0.10), 0 1.5px 8px rgba(32,73,69,0.08);
  border-color: var(--accent-light);
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 18px;
}
/* Features Grid (service/values/solutions) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px 20px 32px 20px;
  min-width: 210px;
  flex: 1 1 225px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.12s;
}
.feature-item img {
  height: 44px; width:44px;
  border-radius: 8px;
  background: var(--pastel-blue);
  padding: 7px;
  margin-bottom: 8px;
}
.feature-item h3 {
  color: var(--primary);
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 0px;
}
.feature-item .service-price {
  display: inline-block;
  margin-top: 4px; 
  background: var(--accent-light);
  color: var(--primary);
  padding: 3px 10px;
  font-size: .98rem;
  border-radius: 8px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 6px 24px rgba(246,184,0,0.10), 0 1.5px 8px rgba(32,73,69,0.08);
  transform: translateY(-2px) scale(1.022);
}

.categories-filters {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.filter {
  background: var(--pastel-pink);
  color: var(--primary-dark);
  padding: 7px 18px;
  border-radius: 13px;
  font-size: 0.95rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: background .18s, color .18s;
  cursor: pointer;
  margin-bottom: 6px;
}
.filter:hover, .filter:focus {
  background: var(--pastel-lavender);
  color: var(--accent);
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
.blog-post-teaser {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 15px;
  padding: 16px 20px 12px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.13s;
}
.blog-post-teaser:hover {
  box-shadow: 0 8px 28px rgba(246,184,0,.10), 0 1px 10px rgba(32,73,69,.10);
  transform: translateY(-2px) scale(1.016);
}

.case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}
.case-studies .text-section {
  background: var(--pastel-mint);
  border-radius: 14px;
  padding: 22px 20px 10px 20px;
  margin-bottom: 22px;
  flex: 1 1 320px;
}

.process-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-left: 2px;
}
.process-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 14px 18px 14px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  font-size: 1rem;
}
.process-list img {
  height: 36px; width:36px;
  padding: 5px;
  border-radius: 7px; background: var(--pastel-yellow);
}
.reference-titles {
  margin-top: 18px; padding-left: 7px;
  display: flex; flex-direction: column;
  gap: 10px;
}
.reference-titles li {
  color: var(--primary-dark);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px; padding-left: 0;
  margin-bottom: 20px;
}
.cert-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 12px 16px 11px 12px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.cert-list img {
  width: 36px; height:36px; background: var(--pastel-mint); border-radius: 5px;
  padding: 6px;
}

.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 16px 0 10px;
}
.faq-item {
  background: var(--pastel-yellow);
  border-radius: 11px;
  box-shadow: 0 2px 8px rgba(234,220,190,0.10);
  padding: 15px 16px 12px 18px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, background 0.11s;
}
.faq-item h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.faq-item p { color: #37505c; }
.faq-item:hover { box-shadow: 0 8px 28px rgba(246,184,0,.13); background: #fffbe3; }

.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  padding-left: 0;
}
.contact-details li, .contact-info p { font-size: 1rem; }

/* CTA SECTION */
.cta {
  background: linear-gradient(96deg, #fce3ec 0%, #e6f7f5 100%);
  border-radius: 20px;
  box-shadow: 0 4px 22px rgba(143,160,180,0.08);
  margin-top: 24px;
  padding: 37px 0 42px 0;
  display: flex;
  align-items: center;
}
.cta .container, .cta .content-wrapper {
  align-items: center; text-align: center;
}
.cta h2 { color: var(--primary); font-size: 2rem; margin-bottom: 12px; }

/* ------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  background: linear-gradient(80deg, #e6f7f5 40%, #fce3ec 100%);
  padding: 38px 0 22px 0;
  border-top: 2px solid var(--accent-light);
  margin-top: 26px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
}
.footer-logo img {
  width: 56px;
  height: 56px;
  margin: 0 0 8px 0;
}
footer nav {
  flex-direction: row;
  gap: 14px;
  margin-bottom: 10px;
  justify-content: center;
}
footer nav a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  opacity: 0.78;
  transition: color .18s, opacity .18s;
}
footer nav a:hover { color: var(--accent); opacity: 1; }
footer .text-section {
  color: #384d45;
  font-size: 0.98rem;
  opacity: 0.88;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
footer address {
  font-style: normal;
  letter-spacing: 0.01em;
}

/* ------------------------------------------------
   RESPONSIVE FLEX ADJUSTMENTS
-------------------------------------------------- */
@media (max-width: 990px) {
  .hero, .cta { padding: 36px 0; }
  .feature-grid, .testimonial-grid, .case-studies, .process-list {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container, .content-wrapper {
    padding-left: 8px;
    padding-right: 8px;
  }
  .feature-grid, .testimonial-grid, .case-studies,
  .blog-list, .process-list, .cert-list {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
  .faq-accordion { flex-direction: column; gap: 13px; }
  .cta { border-radius: 12px; }
  .card { min-width: unset; }
  .feature-item, .testimonial-card, .blog-post-teaser, .faq-item { min-width: unset; width: 100%; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.24rem; }
  h2 { font-size: 1.05rem; }
  .hero, .cta { padding: 18px 0; }
  .footer-logo img { width: 42px; height: 42px; }
}

/* ------------------------------------------------
   COOKIE BANNER & MODAL
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, #efe5fc 0%, #e6f7f5 100%);
  color: #263238;
  box-shadow: 0 -8px 24px rgba(172, 195, 210, 0.19);
  padding: 24px 20px 20px 20px;
  border-radius: 18px 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  z-index: 2000;
  justify-content: center;
  font-size: 1rem;
  animation: cookiefadein .42s;
}
@keyframes cookiefadein {
  0% { transform: translateY(100%); opacity: 0; }
  70% { transform: translateY(-14px); opacity: .88; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  margin: 0 8px 0 0;
  font-size: 1rem;
}
.cookie-btn {
  padding: 10px 24px;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  margin-right: 8px;
  transition: background .18s, color .18s;
}
.cookie-btn.accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #ffe07a; color: var(--primary-dark); }
.cookie-btn.reject {
  background: var(--danger);
  color: #832342;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #ffbccb; color: #832342; }
.cookie-btn.settings {
  background: var(--pastel-lavender);
  color: var(--primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus { background: var(--accent-light); color: var(--accent); }
/* COOKIE PREFERENCE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  background: rgba(36,42,51,0.28);
  z-index: 2150;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.23s;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 19px;
  min-width: 340px;
  max-width: 96vw;
  padding: 30px 28px 18px 28px;
  box-shadow: 0 12px 44px rgba(36,42,51,0.18), 0 4px 14px rgba(246,184,0,0.13);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookiefadein .38s;
  position: relative;
  z-index: 2170;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.9rem;
  color: var(--primary);
  position: absolute;
  right: 18px; top: 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.14s;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
}
.cookie-modal-close:hover { background: var(--pastel-lavender); color: var(--accent); }

.cookie-categories {
  margin-top: 4px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-cat-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 13px 0 6px 0;
}
.cookie-cat-label {
  font-size: 1.06rem;
  font-weight: 500;
  color: var(--primary-dark);
  min-width: 160px;
}
.cookie-toggle {
  display: flex; align-items: center;
}
.cookie-switch {
  appearance: none;
  width: 44px;
  height: 22px;
  background: var(--pastel-mint);
  border-radius: 14px;
  position: relative;
  transition: background 0.19s;
  outline: none;
  cursor: pointer;
}
.cookie-switch:checked { background: var(--accent-light); }
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 4px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2.5px 4px rgba(210,210,210,.11);
  transition: left 0.18s;
}
.cookie-switch:checked:before { left: 24px; }
.cookie-toggle[aria-disabled="true"] .cookie-switch {
  background: var(--secondary);
  opacity: .77;
  cursor: not-allowed;
}
.cookie-toggle[aria-disabled="true"] .cookie-switch:before {
  background: #eee;
}

.cookie-modal-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}
/* Responsive adjustments for cookies */
@media (max-width: 540px) {
  .cookie-modal { min-width: 98vw; padding:18px 9px 8px 12px; }
}

/* ------------------------------------------------
   MISC / UTILITY
-------------------------------------------------- */
ul, ol { padding-left: 22px; }
ul li, ol li { margin-bottom: 5px; }
.text-section {
  margin-bottom: 8px;
}
.content-wrapper > .text-section:last-child { margin-bottom: 0; }
/* Links in text */
.text-section a, p a, address a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.16s;
}
.text-section a:hover, p a:hover { color: var(--primary-dark); }

::-webkit-scrollbar {
  width: 10px;
  background: var(--pastel-mint);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--pastel-lavender);
  border-radius: 8px;
}

::selection {
  background: var(--accent-light);
  color: var(--primary-dark);
}

/* ------------------------------------------------
   END OF FILE
-------------------------------------------------- */
