/* ==== 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none;}
table {border-collapse: collapse; border-spacing: 0;}
/* ==== END RESET ==== */


/* ==== CSS VARIABLES AND COLORS ==== */
:root {
  --primary: #17405E;
  --secondary: #29A88E;
  --accent: #F6F8F9;
  --pastel-pink: #ffc8dd;
  --pastel-yellow: #fff1b6;
  --pastel-mint: #c8ffe0;
  --pastel-blue: #bee1fa;
  --pastel-lilac: #e7c6ff;
  --pastel-coral: #ffb5a7;
  --light: #fff;
  --soft-shadow: 0 4px 24px rgba(154,179,189, 0.12);
  --input-bg: #F8FBFB;
  --borderSoft: #e6e6f5;
  --danger: #e35d6a;
  --success: #66cdaa;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  color: #222;
  background: linear-gradient(180deg, var(--accent) 0%, var(--pastel-blue) 100%);
  min-height: 100vh;
  transition: background 0.6s cubic-bezier(.4,0,.2,1);
}

@media (prefers-color-scheme: dark) {
  body { background: linear-gradient(180deg, #daeaf6 0%, var(--pastel-blue) 100%); }
}


/* ===========================
   TYPOGRAPHY & HEADINGS
=========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
}
h1{font-size:2.5rem;margin-bottom:24px;letter-spacing:-0.02em;}
h2{font-size:1.75rem;margin-bottom:20px;letter-spacing:-0.01em;}
h3{font-size:1.25rem;margin-bottom:12px;}
h4{font-size:1.1rem;margin-bottom:10px;}
p,li,ol,ul{
  font-size: 1rem;
  color: #374151;
  line-height:1.7;
  font-family: var(--font-body);
}
strong{font-weight:bold;color:var(--primary);}
.subtitle {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 18px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

@media (max-width:600px) {
  h1 {font-size: 1.6rem;}
  h2 {font-size: 1.2rem;}
  h3 {font-size: 1.05rem;}
  p,li,ol,ul {font-size: 0.98rem;}
}

/* ============================
   MAIN LAYOUT CONTAINER
============================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto 32px auto;
  display: flex;
  flex-direction: column;
}
@media (max-width:768px) {
  .container {max-width: 100vw;}
  .content-wrapper {margin-bottom: 24px;}
}

/* ==========================
   HEADER & NAVIGATION
=========================== */
header {
  background: var(--light);
  box-shadow: var(--soft-shadow);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 40;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}
.logo-link img {
  height: 48px;
  width: auto;
  transition: transform 0.18s cubic-bezier(.55,.17,.53,.97);
}
.logo-link:focus img, .logo-link:hover img {
  transform: scale(1.06) rotate(-3deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--font-display);
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
}

.cta-btn {
  font-family: var(--font-display);
  background: var(--secondary);
  color: var(--light);
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 28px;
  font-weight: 700;
  box-shadow: 0 3px 14px rgba(41, 168, 142, 0.13);
  transition: background 0.22s, box-shadow 0.22s, color 0.22s, transform 0.16s cubic-bezier(.42,.11,.56,.84);
  margin-left: 18px;
  cursor: pointer;
  letter-spacing: .01em;
  outline: none;
  display:inline-block;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--pastel-mint);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 24px rgba(29,132,119,0.15);
}


/* ==== MOBILE MENU TOGGLE & MOBILE NAV ==== */
.mobile-menu-toggle {
  background: var(--pastel-mint);
  color: var(--primary);
  font-size: 2.2rem;
  border: none;
  border-radius: 12px;
  padding: 6px 18px 6px 12px;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  transition: background 0.22s, color 0.18s, box-shadow 0.22s;
  z-index: 65;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--pastel-blue);
  color: var(--secondary);
  box-shadow: 0 9px 18px rgba(46,168,142,0.10);
}

/* Hide menu desktop, show mobile toggle */
@media (max-width: 1023px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ==== MOBILE MENU OVERLAY ==== */
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(180deg, var(--pastel-pink) 0%, var(--accent) 80%);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(-100vw);
  transition: transform 0.6s cubic-bezier(.81,0,.23,1);
  box-shadow: 0 16px 60px rgba(80,109,130,0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 42px 32px 24px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
  animation: mobileSlideIn 0.65s cubic-bezier(.85,.05,.9,1.6);
}
@keyframes mobileSlideIn {
  from {transform: translateX(-100vw); opacity:0.7;}
  to {transform: translateX(0); opacity:1;}
}
.mobile-menu-close {
  background: var(--secondary);
  color: var(--light);
  font-size: 2.2rem;
  border: none;
  border-radius: 8px;
  align-self: flex-end;
  margin-bottom: 18px;
  padding: 5px 20px 3px 14px;
  box-shadow: 0 2px 8px rgba(41,168,142,0.10);
  cursor: pointer;
  transition: background 0.29s cubic-bezier(.4,0,.2,1), color 0.28s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--primary);
  color: var(--pastel-mint);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--primary);
  text-decoration: none;
  padding: 13px 0 13px 14px;
  margin-right: 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.19s, box-shadow 0.17s;
  background: transparent;
  font-weight: 600;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--pastel-mint);
  color: var(--secondary);
  box-shadow: 0 1.5px 9px rgba(53,163,159,0.10);
}

@media (min-width:1024px) {
  .mobile-menu, .mobile-menu-toggle {display:none;}
}


/* =============================
   HERO / MAIN / FEATURE SECTIONS
============================== */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.hero-section {
  background: linear-gradient(90deg, var(--pastel-blue) 10%, var(--pastel-mint) 60%, var(--accent) 95%);
  min-height: 340px;
  display: flex;
  align-items: center;
  border-radius: 0 0 38px 38px;
  box-shadow: 0 6px 64px rgba(120,168,188,0.10);
  margin-bottom: 60px;
  padding: 46px 0 40px 0;
}
.hero-section .content-wrapper { align-items:flex-start; }
.hero-section h1{ color:var(--primary);text-shadow:0 2px 8px rgba(0,0,0,0.03); }
.hero-section .cta-btn {
  margin-top: 10px;
  margin-left: 0;
}

.feature-section {
  background: var(--accent);
  border-radius: 26px;
  box-shadow: var(--soft-shadow);
  margin: 0 0 60px 0;
  padding: 40px 10px;
}
.feature-section h2{
  color: var(--secondary);
}
.feature-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 18px;
}
@media (max-width: 900px) {
  .feature-grid {gap: 18px;}
}
@media (max-width: 768px) {
  .feature-grid {flex-direction: column;gap: 28px;}
}
.feature-box {
  background: var(--pastel-lilac);
  border-radius: 20px;
  padding: 32px 28px 28px 28px;
  box-shadow: 0 3px 14px rgba(170,150,225,0.10);
  flex: 1 1 0;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow 0.19s, transform 0.16s;
  margin-bottom: 20px;
}
.feature-box img {
  height:38px; width:38px; filter: drop-shadow(0 0 0.5px #c1b1fc);
}
.feature-box:hover, .feature-box:focus {
  box-shadow: 0 6px 28px rgba(125,91,217,0.14);
  transform: translateY(-3px) scale(1.01);
}
.feature-box h3{font-size:1.13rem;color:var(--primary);margin:0 0 4px 0;}


/* SERVICE AND VALUES/ADVANTAGE LISTS */
.service-list, .values-list, .facility-list, .trust-signals {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0;
}
.trust-signals {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  justify-content: flex-start;
}
.trust-signals li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  background: var(--pastel-mint);
  padding: 8px 18px 8px 10px;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(41,168,142, 0.10);
}

.values-list li {
  background: var(--pastel-yellow);
  border-radius: 11px;
  padding:12px 19px 10px 15px;
  box-shadow: 0 1px 9px rgba(230,200,110,0.07);
}
.facility-list li {
  background: var(--pastel-coral);
  border-radius: 11px;
  padding:12px 19px 10px 15px;
  box-shadow:0 1px 7px rgba(255,154,134,0.09);
  color: #422c28;
}

/* ===============
   SECTION, CTA, & CONTENT BLOCKS
================== */
.cta-section {
  background: var(--pastel-mint);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
  padding: 36px 0 48px 0;
  margin-bottom:64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section h2{color:var(--primary);}
.cta-section p { margin-bottom: 18px;}
.cta-section .cta-btn {
  margin-top: 10px;
  margin-right: 8px;
  margin-left: 0;
}

/* ===============
   TESTIMONIALS
================== */
.testimonials-section {
  background: var(--accent);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
  padding-bottom: 48px;
  margin-bottom: 64px;
}
.testimonials-section h2 { margin-bottom: 32px;}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--pastel-blue);
  margin-bottom: 20px;
  border-radius: 18px;
  padding: 20px 22px 19px 22px;
  box-shadow: 0 3px 16px rgba(86,142,193,0.10);
  color: #22243a;
  font-size: 1.09rem;
  position: relative;
  min-width: 210px;
  max-width: 600px;
  font-family: var(--font-body);
  z-index: 2;
  transition: box-shadow 0.3s, background 0.24s;
}
.testimonial-card:hover, .testimonial-card:focus {
  background: var(--pastel-mint);
  box-shadow: 0 6px 22px rgba(21,110,101,0.14);
}
.testimonial-author {
  display: block;
  margin-left: 20px;
  font-size: 0.98rem;
  color: var(--secondary);
  font-weight: 600;
  font-family: var(--font-display);
}

/* ===============
   NEWS SECTIONS
================== */
.news-section {
  background: var(--pastel-lilac);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
  padding-bottom: 33px;
  margin-bottom: 52px;
}
.news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 14px;
}
.news-item {
  background: var(--pastel-yellow);
  border-radius: 15px;
  box-shadow: 0 1.5px 9px rgba(178,165,52,0.09);
  padding: 21px 25px 15px 21px;
  min-width: 220px;
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  margin-bottom:20px;
  position: relative;
  transition: box-shadow 0.2s, background 0.17s;
}
.news-item:hover, .news-item:focus {
  box-shadow: 0 6px 19px rgba(230,200,110,0.15);
  background: var(--pastel-mint);
}
.news-date {
  font-size: 0.92rem;
  color: var(--primary);
  font-family: var(--font-display);
  margin-top: 6px;
}

/* ===============
   LEGAL / TEXT SECTIONS
================== */
.legal-section {
  background: var(--accent);
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
  padding:40px 10px 40px 10px;
  margin-bottom: 60px;
}
.text-section {
  margin-top: 9px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ===============
   FAQ + INFO STEPS
================== */
.faq-section {
  background: var(--pastel-mint);
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
  margin-bottom: 52px;
  padding-bottom: 24px;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
}
.faq-item {
  background: var(--pastel-blue);
  border-radius: 13px;
  box-shadow: 0 1.5px 7px rgba(92,181,222,0.07);
  padding: 17px 18px 13px 18px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0;
}
.steps-list li {
  background: var(--pastel-coral);
  border-radius: 9px;
  padding:13px 14px;
  box-shadow: 0 1.5px 4px rgba(230,106,93,0.08);
}

@media (max-width:768px) {
  .section, section, .cta-section, .hero-section, .legal-section, .feature-section, .testimonials-section, .news-section, .faq-section {
    padding: 25px 3vw 24px 3vw;
    margin-bottom: 38px;
  }
  .feature-grid,.news-list,.faq-list,.service-list,.facility-list,.values-list {flex-direction:column;gap:16px;}
}

/* ===============
   MAP SECTION
================== */
.map-embed {
  background: var(--pastel-blue);
  border-radius: 19px;
  box-shadow: 0 2px 8px rgba(70,182,222,0.09);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 25px 20px;
  margin-top: 10px;
}
.map-embed img {height: 62px; width:62px;}

@media (max-width:650px) {
  .map-embed {flex-direction:column;gap:12px;align-items: flex-start;}
}

/* ===============
   FOOTER
================== */
footer {
  background: var(--primary);
  color: #fff;
  border-radius: 32px 32px 0 0;
  margin-top: 48px;
  box-shadow: 0 -3px 16px rgba(23,64,94,0.15);
  padding: 32px 0 16px 0;
}
footer p {
  color: white;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 8px;
}
.footer-brand, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 5px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: bold;
  color: #fff;
  font-size: 1.1rem;
}
.footer-tagline {
  color: var(--pastel-mint);
  font-size: 0.97rem;
  font-family: var(--font-body);
}
address {
  font-style: normal;
  color: var(--pastel-yellow);
  font-size: 0.96rem;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-menu a {
  color: var(--pastel-lilac);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--pastel-yellow);
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-contact img {
  height: 24px; width: 24px; filter:grayscale(12%) opacity(.9);
}
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 8px;
}
.footer-social a img {
  height:26px;width:26px;
  transition: transform 0.18s, filter 0.18s;
  filter: grayscale(0.5);
}
.footer-social a:hover img, .footer-social a:focus img {
  transform: scale(1.13);
  filter: none;
}
@media (max-width:880px) {
  .footer-container{gap:22px;flex-direction:column;align-items:flex-start;}
}


/* ===================
   SPACING CLASSES & FLEX LAYOUTS
==================== */
.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;}

/* Ensure content does not overlap */
.card, .feature-box, .news-item, .faq-item, .testimonial-card {
  margin-bottom: 20px;
  min-width: 0;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .footer-container {padding:0 2vw;}
}


/* ================
   BUTTONS, LINKS
================== */
button, .cta-btn {
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
button:focus, .cta-btn:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}
a {
  color: var(--secondary);
  text-decoration: underline;
}
a:focus, a:hover{
  color: var(--primary);
  text-decoration: underline;
}

/* ===============
   FORMS (if any)
================== */
input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--input-bg);
  border: 1.5px solid var(--borderSoft);
  border-radius: 9px;
  padding: 11px 13px;
  margin-bottom: 20px;
  color: #234;
  transition: border 0.18s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--secondary);
  outline: none;
}
label {
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom:5px;
}

/* ===============
   COOKIE CONSENT BANNER
================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--light);
  box-shadow: 0 -2px 16px rgba(20,70,100,0.15), 0 -1px 0 rgba(10,20,40,0.12);
  padding: 24px 8vw 18px 22px;
  border-radius: 22px 22px 0 0;
  z-index: 1200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 21px;
  animation: cookieSlideUp 0.92s cubic-bezier(.67,-0.15,.69,0.98) 0.08s;
}
@keyframes cookieSlideUp {
  0% {transform: translateY(120px); opacity:0;}
  100% {transform: translateY(0); opacity:1;}
}
.cookie-banner p {
  flex: 1 1 180px;
  color: var(--primary);
  font-size: 1.03rem;
  margin: 0 8px 0 0;
}
.cookie-banner .cookie-btn {
  background: var(--secondary);
  color: var(--light);
  border: none;
  border-radius: 30px;
  padding: 11px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  margin-right: 10px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  font-size:1rem;
}
.cookie-banner .cookie-btn:last-child {
  margin-right:0;
}
.cookie-banner .cookie-btn.cookie-danger {
  background: var(--danger);
}
.cookie-banner .cookie-btn.cookie-settings {
  background: var(--pastel-blue);
  color: var(--primary);
  border: 1px solid var(--secondary);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--primary);
  color: var(--pastel-mint);
  box-shadow: 0 2px 8px rgba(41,168,142,0.09);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0;top:0;width:100vw;height:100vh;
  background:rgba(174,201,250,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index:1300;
  transition: background 0.2s;
}
.cookie-modal .modal-content {
  background: var(--accent);
  border-radius: 22px;
  box-shadow: 0 6px 44px rgba(29,64,94,0.13);
  padding: 42px 34px 30px 34px;
  min-width: 310px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: cookieModalIn 0.42s cubic-bezier(.6,-0.25,.58,1);
}
@keyframes cookieModalIn {
  0% {transform:scale(0.85) translateY(40px);opacity:0;}
  100% {transform:scale(1) translateY(0);opacity:1;}
}
.cookie-modal h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  color:var(--primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 22px;
}
.cookie-category {
  padding:9px 0;
  display: flex;
  gap: 15px;
  align-items: center;
}
.cookie-category label {
  font-size:1rem;
  color:var(--primary);
}
.cookie-category input[type=checkbox]{width:22px;height:22px;}
.cookie-category.cookie-essential label{
  color: var(--secondary);
}
.cookie-modal .modal-actions {
  margin-top: 20px;
  display:flex;
  gap:18px;
  flex-wrap: wrap;
}
.cookie-modal .modal-actions .cookie-btn {
  margin:0;
  min-width: 120px;
}
.cookie-modal .modal-close {
  background: var(--danger);
  color: var(--light);
  border: none;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight:600;
  font-size: 1.25rem;
  padding: 5px 16px;
  position: absolute;
  top:18px;right:18px;
  cursor:pointer;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--primary); color: var(--pastel-lilac);
}

/* Hide modal by default */
.cookie-modal {display: none;}

/* ===============
   THANKS PAGE
================== */
.thanks-section {
  background: linear-gradient(110deg, var(--pastel-coral) 0%, var(--pastel-yellow) 100%);
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
  margin-bottom: 54px;
  padding-bottom: 40px;
  text-align: center;
}
.thanks-section h1 {
  color: var(--primary);
  margin-bottom: 18px;
}
.thanks-section p {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.thanks-section .cta-btn {
  margin-top: 30px;
}

/* ===============
   RESPONSIVE ADJUSTMENTS
================== */
@media (max-width: 700px) {
  .footer-container {padding:0 1vw;font-size:0.96rem;}
  .feature-grid,.news-list,.faq-list {gap:12px;}
  .card, .feature-box, .news-item, .faq-item, .testimonial-card {max-width:95vw;}
  .cookie-banner {flex-direction: column;gap:18px;padding:18px 3vw 14px 11px;}
  .thanks-section {padding-bottom:24px;}
}

@media (max-width: 420px) {
  .footer-brand img{height:29px;}
  .footer-social a img{height:19px;width:19px;}
}

/* ===============
   TRANSITIONS & MICROINTERACTIONS
================== */
.feature-box, .news-item, .faq-item, .testimonial-card, .cta-btn, .cookie-banner, .mobile-menu, .mobile-nav a {
  transition: box-shadow 0.23s, background 0.21s, color 0.19s, transform 0.13s cubic-bezier(.42,.11,.56,.84);
}
.cta-section,.feature-section, .testimonials-section,.news-section, .faq-section,.legal-section, .thanks-section {
  transition: box-shadow 0.3s, background 0.25s;
}

/* ===============
   MISC
================== */
::-webkit-scrollbar {width: 12px; background: #f8fbfb;}
::-webkit-scrollbar-thumb { background: #d2dbe3; border-radius: 12px; }
::-webkit-input-placeholder { color: #b5b5cc; opacity:1; }
::-moz-placeholder { color: #b5b5cc; opacity:1; }
:-ms-input-placeholder { color: #b5b5cc; opacity:1; }
::placeholder { color: #b5b5cc; opacity:1; }

/* ===============
   ACCESSIBILITY
================== */
[tabindex]:focus, a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--pastel-mint);
}

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