/* =========================================
   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; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; border: 0; }
button { background: none; border: none; cursor: pointer; font: inherit; }
:focus { outline: 2px solid #88C1D0; outline-offset: 2px; }

/* =========================================
   FONT IMPORTS & BASE
========================================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --primary: #1E3A4C;
  --secondary: #88C1D0;
  --accent: #F6F7F8;
  --danger: #C5221F;
  --success: #2CA657;

  --heading-font: 'Montserrat', Arial, Helvetica, sans-serif;
  --body-font: 'Roboto', Arial, Helvetica, sans-serif;

  --font-xs: 14px;
  --font-sm: 16px;
  --font-md: 18px;
  --font-lg: 24px;
  --font-xl: 32px;
  --font-xxl: 48px;
}

body {
  font-family: var(--body-font);
  font-size: var(--font-sm);
  color: var(--primary);
  background: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 900;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: var(--font-xxl);
  margin-bottom: 24px;
}
h2 {
  font-size: var(--font-xl);
  margin-bottom: 20px;
}
h3 { font-size: var(--font-lg); margin-bottom: 12px; }
h4 { font-size: var(--font-md); margin-bottom: 8px; }
h5, h6 { font-size: var(--font-sm); }

p, ul, ol, li {
  font-size: var(--font-md);
  color: var(--primary);
  font-family: var(--body-font);
  font-weight: 400;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}
subheadline, .subheadline {
  font-size: var(--font-lg);
  font-family: var(--body-font);
  color: var(--secondary);
  font-weight: 500;
}

address {
  font-style: normal;
  color: #5C7282;
  font-weight: 400;
  font-size: var(--font-xs);
  margin-top: 8px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* =========================================
   HEADER & NAVIGATION
========================================= */
header {
  background: var(--accent);
  width: 100%;
  box-shadow: 0 4px 18px rgba(30,58,76,0.04);
  position: relative;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px 0;
  gap: 32px;
  position: relative;
}
.main-nav > a img {
  height: 44px;
  width: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav li { list-style: none; }
.main-nav a {
  padding: 8px 0;
  font-family: var(--heading-font);
  font-size: var(--font-md);
  font-weight: 700;
  color: var(--primary);
  position: relative;
  transition: color 0.2s;
}
.main-nav a.cta-nav {
  background: var(--secondary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 32px;
  font-weight: 900;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 4px 18px rgba(136,193,208,0.13);
  margin-left: 18px;
}
.main-nav a.cta-nav:hover, .main-nav a.cta-nav:focus {
  background: var(--primary);
  color: #fff;
}
.main-nav a:not(.cta-nav):hover, .main-nav a:not(.cta-nav):focus {
  color: var(--secondary);
}

/* ---- Hamburger Button ---- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 28px;
  width: 48px;
  height: 48px;
  color: var(--primary);
  background: var(--accent);
  border-radius: 8px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  z-index: 101;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--secondary);
  color: #fff;
}

/* ---- Mobile Menu ---- */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,58,76,0.98);
  color: #fff;
  overflow-y: auto;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.42,0,.58,1);
}
.mobile-menu.open { display: flex; transform: translateX(0); }
.mobile-menu > nav.mobile-nav {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: var(--font-xl);
  font-family: var(--heading-font);
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  margin: 2px 0;
  width: 100%;
  text-align: center;
  letter-spacing: 0.05em;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  color: var(--secondary);
  font-size: 2rem;
  font-family: var(--heading-font);
  z-index: 10;
  padding: 8px 12px;
  border-radius: 6px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 1100px) {
  .main-nav ul { gap: 18px; }
}
@media (max-width: 900px) {
  .main-nav ul { gap: 10px; }
  .main-nav { gap: 14px; }
}
@media (max-width: 844px) {
  .main-nav ul { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* When .mobile-menu.open is set from JS, show */
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}

/* =========================================
   HERO SECTION (Home)
========================================= */
.hero {
  background: linear-gradient(90deg, var(--accent) 65%, #e6f0f4 100%);
  padding: 64px 0 48px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero h1 {
  color: var(--primary);
  font-size: var(--font-xxl);
  letter-spacing: -0.01em;
}
.hero .subheadline {
  color: var(--secondary);
  font-size: var(--font-lg);
  font-weight: 500;
}

.cta-btn, .cta-btn.secondary {
  background: var(--secondary);
  color: #fff;
  padding: 16px 40px;
  border-radius: 32px;
  font-size: var(--font-lg);
  font-family: var(--heading-font);
  font-weight: 900;
  letter-spacing: 0.07em;
  box-shadow: 0 4px 18px rgba(136,193,208,0.13);
  transition: background 0.23s, color 0.23s, box-shadow 0.23s;
  border: none;
  margin-top: 10px;
  margin-bottom: 0;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 22px rgba(30,58,76,0.18);
  transform: translateY(-2px) scale(1.04);
}
.cta-btn.secondary {
  background: var(--primary);
  color: #fff;
  border: none;
}
.cta-btn.secondary:hover,
.cta-btn.secondary:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* =========================================
   SECTIONS & FLEX PATTERNS
========================================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 14px 0 rgba(30,58,76,0.06);
  border-radius: 20px;
  padding: 32px 28px;
  min-width: 260px;
  z-index: 0;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(30,58,76,0.14);
  transform: translateY(-4px) scale(1.017);
}
.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;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(30,58,76,0.08);
  margin-bottom: 20px;
  flex-direction: column;
  min-width: 300px;
  max-width: 400px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card p {
  font-size: var(--font-md);
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px;
}
.testimonial-card strong {
  color: var(--secondary);
  font-size: var(--font-sm);
  font-weight: 900;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 rgba(136,193,208,0.21);
  transform: scale(1.025) translateY(-2px);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f9fcfd;
  padding: 24px 20px;
  border-radius: 18px;
  margin-bottom: 20px;
}

/* =========================================
   FEATURES (Index/Services/About)
========================================= */
.features {
  background: #f9fcfd;
  padding: 40px 0;
  width: 100%;
}
.features .content-wrapper {
  max-width: 1020px;
}
.feature-grid, .timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(30,58,76,0.08);
  padding: 28px 22px 32px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 300px;
  transition: box-shadow 0.14s, transform 0.15s;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}
.feature h3 {
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--primary);
}
.feature p {
  font-size: var(--font-md);
  color: #415769;
}
.feature:hover {
  box-shadow: 0 2px 24px 0 rgba(136,193,208,0.21);
  transform: scale(1.035) translateY(-3px);
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  background: #fff;
  border-radius: 16px;
  padding: 24px 18px;
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 308px;
  box-shadow: 0 2px 10px rgba(30,58,76,0.07);
  transition: box-shadow 0.14s, transform 0.12s;
}
.timeline-item img {
  width: 40px; height: 40px; margin-bottom: 4px;
}
.timeline-item:hover { box-shadow: 0 4px 16px rgba(136,193,208,0.15); transform: scale(1.03); }

/* =========================================
   SERVICES LIST & CARDS
========================================= */
.services-list, .service-list {
  margin: 32px 0 24px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.service-list li, .services-list li {
  min-width: 230px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(30,58,76,0.07);
  padding: 28px 18px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.service-list li h3, .services-list li h3, .services-list li h2, .service-card h2 {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: var(--font-lg);
  color: var(--primary);
  margin-bottom: 8px;
}
.service-list li p, .services-list li p, .service-card p {
  font-size: var(--font-md);
  margin-bottom: 12px;
  color: #465b6e;
}
.service-price {
  font-size: var(--font-md);
  font-weight: 700;
  color: var(--secondary);
  margin-top: auto;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(30,58,76,0.08);
  padding: 28px 22px 32px 22px;
  min-width: 250px;
  max-width: 340px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.14s, transform 0.15s;
  margin-bottom: 20px;
}
.service-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}
.service-card:hover {
  box-shadow: 0 2px 24px 0 rgba(136,193,208,0.18);
  transform: scale(1.025) translateY(-3px);
}

.icon-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin: 24px 0 14px 0;
}
.icon-row img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 1px 2px #a5c8d5);
}

/* =========================================
   TESTIMONIALS SLIDER & CARDS
========================================= */
.testimonials {
  background: #1E3A4C;
  color: #fff;
  padding: 52px 0 56px 0;
}
.testimonials .container .content-wrapper > h2 {
  color: #fff;
  margin-bottom: 32px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.testimonial-card {
  background: #fff;
  color: #182533;
  box-shadow: 0 2px 12px rgba(30,58,76,0.09);
  min-width: 260px;
  max-width: 390px;
  border-radius: 18px;
  padding: 22px 18px 20px 18px;
  transition: box-shadow 0.15s, transform 0.13s;
}
.testimonial-card p {
  color: #1E3A4C;
  margin-bottom: 10px;
  font-size: var(--font-md);
}
.testimonial-card strong {
  display: block;
  color: var(--secondary);
  font-weight: 900;
  font-size: var(--font-sm);
  margin-top: 10px;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px 0 rgba(136,193,208,0.19);
  transform: scale(1.03) translateY(-2px);
}

/* =========================================
   FAQ
========================================= */
.faq-section {
  background: #f9fcfd;
  padding: 40px 0;
}
.faq-list, .faq-summary {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
  padding-left: 0;
}
.faq-list li, .faq-summary li {
  background: #fff;
  box-shadow: 0 2px 10px rgba(30,58,76,0.07);
  border-radius: 14px;
  padding: 28px 18px;
}
.faq-list h2 {
  font-size: var(--font-md);
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 900;
}
.faq-list p {
  font-size: var(--font-md); color: #556475;
}

/* =========================================
   POLICY SECTIONS (Privacy, GDPR, Cookies, ToU)
========================================= */
.policy-section {
  background: #fff;
  padding: 48px 0 56px 0;
}
.policy-section .content-wrapper {
  max-width: 820px;
  margin: 0 auto;
}
.policy-section .text-section,
.confirmation-section .text-section {
  margin: 18px 0 0 0;
  padding: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.policy-section .text-section h2 {
  font-size: var(--font-lg);
  margin-bottom: 4px;
}
.policy-section .text-section ul, .confirmation-section .text-section ul {
  margin-top: 5px;
  margin-bottom: 18px;
  padding-left: 22px;
  list-style: disc;
}
.policy-section .text-section li, .confirmation-section .text-section li {
  font-size: var(--font-md);
  margin-bottom: 4px;
  color: #223344;
}
.policy-section .text-section a { color: var(--secondary); text-decoration: underline; }
.confirmation-section .text-section a.cta-btn { text-decoration: none; }

.confirmation-section {
  background: #f9fcfd;
  padding: 56px 0 48px 0;
  text-align: left;
}
.confirmation-section .content-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================
   CONTACT PAGE
========================================= */
.contact-details, .hours-location {
  background: #fff;
  padding: 40px 0;
}
.contact-details .contact-info {
  margin-bottom: 30px;
}
.contact-details ul,
.hours-location ul {
  margin-top: 12px;
  margin-bottom: 6px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-details ul li strong,
.hours-location ul li strong {
  color: var(--primary);
  font-weight: 700;
}
.contact-details a,
.hours-location a {
  color: var(--secondary);
  text-decoration: underline;
}
.directions {
  font-style: italic;
  color: #415769;
  margin-top: 10px;
}

/* =========================================
   STEPS (How it Works)
========================================= */
.process {
  background: #f9fcfd;
  padding: 40px 0 44px 0;
  width: 100%;
}
.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 30px;
  margin-bottom: 16px;
}
.step-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(30,58,76,0.07);
  padding: 32px 20px 30px 20px;
  flex: 1 1 260px;
  max-width: 350px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.step-list img {
  width: 44px;
  height: 44px;
  margin-bottom: 7px;
}
.step-list h2 {
  font-size: var(--font-lg);
  color: var(--primary);
  margin-bottom: 8px;
}
.step-list p {
  font-size: var(--font-md);
  color: #52647a;
}

/* =========================================
   CTA FINAL SECTIONS
========================================= */
.cta-final {
  background: var(--secondary);
  color: #fff;
  padding: 52px 0;
  text-align: left;
}
.cta-final h2 {
  color: #fff;
}
.cta-final p {
  color: #e6f0f4;
}
.cta-final .cta-btn {
  margin-top: 22px;
  background: #fff;
  color: var(--primary);
  font-weight: 900;
}
.cta-final .cta-btn:hover, .cta-final .cta-btn:focus {
  background: var(--primary);
  color: #fff;
}

/* =========================================
   FOOTER
========================================= */
footer {
  background: var(--primary);
  color: #fff;
  padding: 40px 0 24px;
}
.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-wrapper img {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  gap: 30px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: var(--font-sm);
  letter-spacing: 0.045em;
  transition: color 0.17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}

/* =========================================
   COOKIE CONSENT BANNER
========================================= */
.cookie-consent-banner {
  position: fixed;
  z-index: 99999;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: var(--primary);
  padding: 28px 20px 20px 20px;
  box-shadow: 0 -4px 20px rgba(30,58,76,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  width: 100vw;
  max-width: 100vw;
  min-height: 78px;
  transition: transform 0.30s cubic-bezier(0.42,0,0.58,1), opacity 0.3s;
  font-size: var(--font-md);
}
.cookie-text {
  flex: 3 1 300px;
  padding-right: 20px;
  color: var(--primary);
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex: 1 1 180px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-btn {
  background: var(--secondary);
  color: #fff;
  border-radius: 20px;
  padding: 11px 32px;
  font-family: var(--heading-font);
  font-size: var(--font-md);
  font-weight: 900;
  border: none;
  transition: background 0.19s, color 0.19s, box-shadow 0.12s;
  box-shadow: 0 2px 8px 0 rgba(136,193,208,0.09);
  margin-right: 2px;
}
.cookie-btn.danger {
  background: var(--danger);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--primary);
  color: #fff;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-btn.danger:hover,
.cookie-btn.danger:focus {
  background: #8c1712;
  color: #fff;
}
.cookie-consent-banner.hide { opacity: 0; pointer-events: none; transform: translateY(80px); }

/* ---- Cookie Modal ---- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 100000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(30,58,76,0.66);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s cubic-bezier(.42,0,.58,1);
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 16px;
  box-shadow: 0 6px 36px 0 rgba(30,58,76,0.22);
  padding: 32px 26px 24px 26px;
  width: 95vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transform: translateY(-60px);
  transition: transform 0.23s cubic-bezier(.42,0,.58,1);
}
.cookie-modal-overlay.active .cookie-modal {
  transform: translateY(0);
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  color: var(--secondary);
  background: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 1.4rem;
  font-family: var(--heading-font);
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-modal h2 {
  font-size: var(--font-lg);
}
.cookie-category {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #eef1f3;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-family: var(--body-font);
  font-size: var(--font-md);
  color: var(--primary);
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 42px;
  height: 22px;
  background: #d1eaf2;
  border-radius: 16px;
  position: relative;
  margin-left: 14px;
  cursor: pointer;
  outline: none;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle:disabled {
  background: #c5d2da;
  cursor: not-allowed;
}
/* custom thumb */
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s;
}
.cookie-toggle:checked::before {
  left: 22px;
}

/* =========================================
   MEDIA QUERIES: RESPONSIVE FLEX CHANGES
========================================= */
@media (max-width: 1024px) {
  .container, .footer-wrapper { max-width: 94vw; padding: 0 10px; }
  .features .content-wrapper, .policy-section .content-wrapper, .confirmation-section .content-wrapper {
    max-width: 96vw; padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .timeline, .step-list, .service-cards, .testimonial-slider {
    gap: 16px;
  }
  .footer-nav { gap: 18px; }
}
@media (max-width: 768px) {
  .hero { padding: 32px 0 28px 0; }
  .hero h1 { font-size: 2.2rem; }
  .container { max-width: 100vw; padding: 0 8px; }
  .content-grid, .card-container, .service-cards, .feature-grid, .timeline, .step-list, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
    align-items: stretch !important;
  }
  .card, .feature, .timeline-item, .service-card, .testimonial-card, .faq-list li, .step-list li, .service-list li {
    max-width: 98vw;
    min-width: 0;
  }
  .testimonial-slider { align-items: stretch !important; }
  .footer-wrapper { gap: 12px; padding: 0 2vw; }
  .text-image-section { flex-direction: column !important; gap: 18px; }
  .cookie-consent-banner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-actions { justify-content: flex-start; flex-wrap: wrap; gap: 8px; }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .cta-btn, .cta-btn.secondary { font-size: var(--font-md); padding: 13px 14px; }
  .footer-nav { gap: 8px; flex-wrap: wrap; justify-content: flex-start; }
  .section, .features, .policy-section, .confirmation-section, .process, .cta-final, .contact-details, .hours-location {
    padding: 24px 2vw;
    margin-bottom: 26px;
  }
}

/* =========================================
   ANIMATIONS & MICRO-INTERACTIONS
========================================= */
.card, .feature, .timeline-item, .service-card, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.18s;
}
.cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .footer-nav a {
  transition: background 0.22s, color 0.18s, box-shadow 0.13s, transform 0.12s;
}
.cta-btn:hover, .cta-btn:focus,
.cookie-btn:hover, .cookie-btn:focus,
.footer-nav a:hover, .footer-nav a:focus {
  transform: scale(1.04);
  box-shadow: 0 4px 18px rgba(136,193,208,0.14);
}

@media (max-width: 420px) {
  .cta-btn, .cta-btn.secondary { padding: 8px 6px; font-size: var(--font-sm); }
  .footer-wrapper img { width: 32px; height: 32px; }
}

/* =========================================
   UTILITIES
========================================= */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-16 { margin-top: 16px!important; }
.mb-16 { margin-bottom: 16px!important; }
.mt-24 { margin-top: 24px!important; }
.mb-24 { margin-bottom: 24px!important; }
.text-center { text-align: center!important; }
.d-flex { display: flex!important; }
.flex-col { flex-direction: column!important; }
.flex-row { flex-direction: row!important; }
.hide { display: none!important; }
section {
  padding: 10px 0;
}
/* END */
