/* ========================================
   CSS RESET & NORMALIZATION (MOBILE FIRST)
   ======================================== */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F2F5F9;
  color: #2B2023;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
table { border-collapse: collapse; width: 100%; }
th, td { padding: 16px; text-align: left; font-size: 16px; }
hr {
  border: none;
  border-top: 1px solid #dedad4;
  margin: 32px 0;
}


/* =============================
   VINTAGE RETRO VARIABLES
   ============================= */
:root {
  /* Brand and retro palette */
  --color-primary: #153057;
  --color-secondary: #F2F5F9;
  --color-accent: #FAAE3D;
  --color-retro-red: #B5542E;
  --color-retro-blue: #6394A6;
  --color-retro-green: #6A794E;
  --color-retro-bg: #F6EFE5;
  --color-retro-brown: #7B5C37;
  --color-retro-shadow: #d2bfa9;
  --text-main: #2B2023;
  --text-head: #42260A;
  --text-secondary: #5C4852;
  --white: #fff;

  /* Font families */
  --font-display: 'Montserrat', 'Arial Black', Arial, sans-serif;
  --font-body: 'Roboto', 'Segoe UI', Arial, sans-serif;
  --font-retro: 'Montserrat', 'Nunito', 'Roboto', cursive;

  /* Spacing scale */
  --sp-8: 8px;
  --sp-16: 16px;
  --sp-20: 20px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-40: 40px;
  --sp-48: 48px;
  --sp-60: 60px;

  --radius-large: 18px;
  --radius-card: 12px;
  --radius-btn: 30px;
  --shadow-retro: 0 6px 28px -8px var(--color-retro-shadow);
  --border-card: 2px solid #E2C9B1;
  --transition: 0.25s cubic-bezier(.4,1.2,.33,1);
}


/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-retro);
  color: var(--text-head);
  margin-bottom: var(--sp-20);
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.13;
  margin-bottom: var(--sp-24);
}
h2 {
  font-size: 2rem;
  margin-bottom: var(--sp-16);
}
h3 {
  font-size: 1.45rem;
}
h4 { font-size: 1.18rem; }

p, li, dt, dd, th, td, label, input, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
}
p {
  margin-bottom: var(--sp-16);
  line-height: 1.67;
}
strong, b {
  font-weight: 700;
  color: var(--color-retro-brown);
}

/* retro headline pattern background for page sections */
h1, h2 {
  position: relative;
  z-index: 1;
}
h1::before, h2::before {
  content: '';
  display: block;
  position: absolute;
  left: -16px;
  top: 50%;
  width: 40px;
  height: 11px;
  background: repeating-linear-gradient(135deg, var(--color-accent) 0 7px, var(--color-retro-brown) 7px 14px);
  opacity: .15;
  border-radius: 8px;
  transform: translateY(-50%) rotate(-4deg);
  z-index: -1;
}
h2::before {
  width:24px; height:7px; left: -8px; opacity:.20;
}

/* =============
   BUTTONS
   ============= */
.cta-btn, button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: var(--radius-btn);
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-retro);
  font-weight: 700;
  font-size: 1.13rem;
  padding: 0.75em 2.1em;
  margin: var(--sp-8) 0;
  box-shadow: 0 2px 8px rgba(180,60,30,.12);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-align: center;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 0 #fff2;
}
.cta-btn:hover, button:hover, .btn:hover, .cta-btn:focus {
  background: var(--color-retro-brown);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200,110,40,.15);
  transform: translateY(-3px) scale(1.04);
}
.cta-btn:active { transform: translateY(1px) scale(0.98); }


/* =======================
   WRAPPERS & CONTAINERS
   ======================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--sp-16);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-24);
}

.section {
  margin-bottom: var(--sp-60);
  padding: var(--sp-40) var(--sp-20);
  background: var(--color-retro-bg);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-retro);
  border: 1.5px solid #ecd6b7d0;
  position: relative;
}


/* ===========================
   HEADER & NAVIGATION BAR
   =========================== */
header {
  background: #ece1ce;
  box-shadow: 0 3px 12px -6px #6A794E22;
  border-bottom: 2px solid #e4c695;
  position: sticky;
  top: 0; left: 0;
  z-index: 80;
}
header .content-wrapper {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  padding: var(--sp-20) 0;
}
header img {
  height: 50px;
  margin-right: var(--sp-24);
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: var(--sp-24);
  align-items: center;
}
.main-nav a {
  font-family: var(--font-retro);
  font-size: 1.13rem;
  letter-spacing: 0.015em;
  color: var(--color-primary);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-color .19s;
  position: relative;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--color-retro-red);
  border-bottom: 2px solid var(--color-accent);
}


/* ====================
   HERO SECTION, CTA
   ==================== */
.hero, .cta {
  background: repeating-linear-gradient(120deg, #ecd6b7 0 28px, #faf7f0 28px 56px);
  border-radius: 0 0 var(--radius-large) var(--radius-large);
  box-shadow: none;
  border: none;
  padding: var(--sp-48) 0 var(--sp-40) 0;
  margin-bottom: var(--sp-40);
}
.hero .container,.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper, .cta .content-wrapper {
  align-items: center;
  gap: var(--sp-24);
  text-align: center;
}

/* CTA Button emphasizer */
.cta-btn {
  margin-top: var(--sp-16);
  box-shadow: 0 7px 28px -6px #fbb95644;
  background: var(--color-accent);
  border: 2px solid #ebc06f60;
}

/* =========================
   FEATURES & CARDS LAYOUT
   ========================= */
.features {
  margin-bottom: var(--sp-60);
}
.feature-grid, .feature-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-24);
  justify-content: flex-start;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-16);
  background: #fff3e1;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 14px -4px #eedda8b8;
  border: var(--border-card);
  padding: var(--sp-24);
  min-width: 240px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  transition: transform var(--transition), box-shadow var(--transition), background 0.2s;
}
.feature:hover, .card:hover {
  background: #ffe2a1;
  transform: translateY(-6px) scale(1.02) rotate(-1deg);
  box-shadow: 0 12px 28px -4px #b99a6322;
}
.feature img {
  height: 42px;
  margin-bottom: var(--sp-8);
}

/* Card Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #faf5ed;
  border: var(--border-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-retro);
  margin-bottom: 20px;
  position: relative;
  padding: var(--sp-24) var(--sp-20);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 12px 24px -7px #b99a6325;
  transform: translateY(-2px) scale(1.01);
}

/* Content Grids (text-image/2-column) */
.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;
}

/* ================
   ABOUT HIGHLIGHTS
   ================ */
.experience-highlights {
  color: var(--color-retro-red);
  font-family: var(--font-retro);
  font-size: 1.18rem;
  padding: var(--sp-8) var(--sp-16);
  background: #faf0e2;
  border-radius: var(--radius-card);
  letter-spacing: .02em;
  margin-top: var(--sp-16);
  box-shadow: 0 2px 12px -4px #dabf9480;
}

/* ================
   TEAM, VALUES, ETC.
   ================ */
.history-timeline {
  margin-top: var(--sp-16);
}
.history-timeline ul li:before {
  content: '\2022';
  color: var(--color-retro-green);
  font-size: 1.15em;
  padding-right: 8px;
}
.team-intro {
  background: #f0ead3;
  border-radius: var(--radius-card);
  padding: var(--sp-16);
  margin-top: var(--sp-16);
}
.values ul li:before {
  content: '\2605';
  color: var(--color-primary);
  margin-right: 8px;
  font-size: 1.07em;
}

/* =======
   FAQ
   ======= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--sp-24);
}
.faq-item {
  background: #fffbe7;
  border-radius: var(--radius-card);
  border: var(--border-card);
  box-shadow: 0 2px 8px #eed9b470;
  padding: var(--sp-20);
  margin-bottom: var(--sp-16);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
}
.faq-item:hover {
  background: #faecd2;
  box-shadow: 0 7px 22px -8px #e0b7707e;
}
.topic-list ul li::before {
  content: '\1F4D6';
  margin-right: 7px;
  color: var(--color-retro-blue);
}

/* ===============
   PRICING TABLE
   =============== */
.price-table {
  background: var(--color-retro-bg);
  border-radius: var(--radius-card);
  border: var(--border-card);
  box-shadow: 0 2px 8px #e9cea670;
  overflow: hidden;
  margin-bottom: var(--sp-16);
}
.price-table th {
  background: #e4d6b9;
  font-family: var(--font-retro);
  color: var(--color-retro-brown);
  font-size: 1.07rem;
}
.price-table tr:nth-child(even) td {
  background: #f7ecd8;
}
.price-table tr:nth-child(odd) td {
  background: #fff9ef;
}
.price-table td {
  color: var(--color-primary);
  font-size: 1.09em;
}

/* =====================
   TESTIMONIALS SLIDER
   ===================== */
.testimonials {
  background: #f9e7ca;
  padding: var(--sp-32) 0;
  border-radius: var(--radius-large);
  margin-bottom: var(--sp-40);
  box-shadow: 0 4px 32px -8px #caa06325;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-24);
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fffffa;
  border-radius: var(--radius-card);
  border: 1.5px solid #ecd6b7;
  box-shadow: 0 3px 18px -6px #ecd09c66;
  min-width: 290px;
  max-width: 350px;
  margin-bottom: 20px;
  flex: 1 1 310px;
  font-size: 1.05em;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card p {
  color: #51341E;
  font-family: var(--font-body);
  font-size: 1em;
}
.testimonial-meta {
  font-size: 0.95em;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  color: var(--color-retro-brown);
  font-style: italic;
}
.testimonial-card:hover {
  box-shadow: 0 16px 36px -10px #99530022;
  transform: scale(1.03) rotate(-1deg);
}
/* CRITICAL: Readable dark text! */
.testimonial-card, .testimonial-card p {
  background: #fffbe7;
  color: #42260A;
}


/* =====================
   CONTACT DETAILS/INFO
   ===================== */
.contact-summary ul,
.contact-information ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--sp-16);
}
.contact-summary ul li, .contact-information ul li {
  display: flex;
  align-items: center;
  font-size: 1em;
  gap: 8px;
}
.location-map, .map-location {
  margin-top: var(--sp-16);
}

.address-block, .phone-email-block, .business-hours {
  background: #f2e0c9;
  padding: var(--sp-16);
  border-radius: var(--radius-card);
  margin-bottom: var(--sp-16);
  color: var(--color-primary);
  font-family: var(--font-body);
}
.business-hours {
  font-weight: 500;
}

/* ========================
   LEGAL SECTIONS / MODALS
   ======================== */
.legal {
  background: #f9f7f2;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 8px #e0bec470;
  padding: var(--sp-32) var(--sp-16);
  margin-bottom: var(--sp-32);
}
.legal h2 {
  margin-top: var(--sp-20);
}

/* ====================
   FOOTER
   ==================== */
footer {
  background: #ebe0ce;
  padding: var(--sp-32) 0;
  border-top: 2px solid #dfc181;
  font-family: var(--font-body);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--sp-24);
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.footer-nav {
  display: flex;
  gap: var(--sp-16);
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--font-retro);
  color: var(--color-primary);
  opacity: 0.87;
  transition: color .22s;
}
.footer-nav a:hover {
  color: var(--color-accent);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.98em;
  color: #644723;
}
.footer-brand img {
  height: 32px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social img {
  width: 24px; height: 24px; filter: sepia(0.4) contrast(1.2);
  transition: filter .22s;
}
.footer-social a:hover img { filter: sepia(.2) brightness(1.3) contrast(2.2); }


/* ============================
   MOBILE-FIRST NAVIGATION MENU
   ============================ */
.mobile-menu-toggle {
  display: flex;
  position: fixed;
  right: 16px;
  top: 20px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  border: 2px solid #e9be6d78;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  z-index: 130;
  transition: background 0.18s, color 0.18s, transform .13s;
  box-shadow: 0 3px 17px -6px #dcbc7e73;
  font-size: 2rem;
  cursor: pointer;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #ebe0ceee;
  backdrop-filter: blur(7px);
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity .32s cubic-bezier(.7,.4,.45,1.08), transform .33s cubic-bezier(.7,.4,.45,1.08);
}
.mobile-menu.active {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-self: flex-end;
  margin: var(--sp-24) var(--sp-20) 0 0;
  cursor: pointer;
  transition: background .16s, color .16s;
  box-shadow: 0 2px 10px -4px #daa4406e;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-20);
  margin: var(--sp-40) 0 0 var(--sp-32);
}
.mobile-nav a {
  font-family: var(--font-retro);
  font-size: 1.31em;
  color: var(--color-primary);
  padding: var(--sp-8) var(--sp-24);
  border-radius: 8px;
  background: none;
  transition: background .13s, color .13s;
  margin-bottom: 7px;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--white);
}

/* Hide mobile menu trigger on desktop, hide desktop nav on mobile */
@media (min-width: 1100px) {
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
  .main-nav { display: flex !important; }
}
@media (max-width: 1099px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ================
   COOKIE BANNER
   ================ */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #eee1c9fa;
  z-index: 220;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  box-shadow: 0 -6px 32px -5px #d3b4744b;
  padding: var(--sp-24) var(--sp-32);
  font-size: 1em;
  font-family: var(--font-body);
  border-top: 2.5px solid #e9be6d76;
  animation: cb-fadein .8s;
}
@keyframes cb-fadein {
  from { opacity: 0; transform: translateY(48px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  color: #492815;
  max-width: 730px;
}
.cookie-banner__actions {
  display: flex;
  gap: var(--sp-16);
  flex-wrap: wrap;
}
.cookie-btn, .cookie-btn--accept, .cookie-btn--reject, .cookie-btn--settings {
  font-family: var(--font-retro);
  font-size: 1em;
  padding: 10px 26px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background .17s, color .13s;
  outline: none;
}
.cookie-btn--accept {
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: bold;
}
.cookie-btn--accept:hover, .cookie-btn--accept:focus {
  background: var(--color-retro-brown);
  color: var(--white);
}
.cookie-btn--reject {
  background: #f9dcd4;
  color: var(--color-retro-red);
  border: 1.5px solid #e8c3ad;
  font-weight: bold;
}
.cookie-btn--reject:hover, .cookie-btn--reject:focus {
  background: #eab9b1;
  color: #fff;
}
.cookie-btn--settings {
  background: var(--color-primary);
  color: var(--white);
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #201309a0;
  z-index: 350;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff9ef;
  border-radius: var(--radius-large);
  box-shadow: 0 7px 48px -8px #b99a632a;
  padding: var(--sp-40) var(--sp-32);
  min-width: 320px;
  max-width: 460px;
  font-family: var(--font-body);
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  gap: var(--sp-20);
  animation: cookie-modal-in .22s cubic-bezier(.58,.57,.29,1.4);
  position: relative;
}
@keyframes cookie-modal-in {
  from { opacity: .3; transform: scale(0.93) translateY(32px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-family: var(--font-retro);
  font-size: 1.44em;
  color: var(--color-retro-brown);
  letter-spacing: 0.01em;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-retro-red);
  color: var(--white);
  width: 32px; height: 32px;
  border: none;
  border-radius: 50%;
  font-size: 1.1em;
  cursor: pointer;
  transition: background .15s, color .16s;
  box-shadow: 0 1.5px 7px -2px #e06a3357;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-retro-brown);
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
  margin: var(--sp-8) 0 10px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--color-accent);
  width: 22px; height: 22px;
  margin-right: 4px;
  border-radius: 5px;
}
.cookie-category.essential input[type='checkbox'] {
  accent-color: var(--color-retro-green);
}
.cookie-category.essential label {
  font-weight: 700;
  color: #634516;
}

/* ====================
     MISCELLANEOUS
   ==================== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: var(--sp-24);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =============
   UTILITIES
   ============= */
.text-center { text-align: center !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center !important; }
.justify-between { justify-content: space-between !important; }
.gap-16 { gap: var(--sp-16); }
.gap-20 { gap: var(--sp-20); }
.gap-24 { gap: var(--sp-24); }

/* =============
   RESPONSIVE
   ============= */
@media (max-width: 980px) {
  .feature-grid, .testimonial-slider, .content-grid, .card-container, .footer .content-wrapper {
    flex-direction: column;
    gap: var(--sp-24);
    align-items: stretch;
  }
  .features, .testimonials {
    padding-left: var(--sp-16);
    padding-right: var(--sp-16);
  }
  header .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--sp-16);
  }
  footer .content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-16);
  }
  .footer-brand img {
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 96vw;
    padding-left: var(--sp-8);
    padding-right: var(--sp-8);
  }
  .hero, .cta, .testimonials, .section {
    padding: var(--sp-24) var(--sp-8);
  }
  .content-wrapper {
    gap: var(--sp-16);
  }
  .feature-grid, .testimonial-slider, .card-container, .content-grid {
    flex-direction: column;
    gap: var(--sp-16);
  }
  .text-image-section {
    flex-direction: column;
    gap: var(--sp-20);
  }
  .cta-btn, .btn, button {
    width: 100%;
    padding: 0.75em 1.15em;
    font-size: 1.07em;
  }
  .section {
    margin-bottom: var(--sp-32);
    padding: var(--sp-24) var(--sp-8);
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: var(--sp-12);
    padding: var(--sp-16) var(--sp-8);
    font-size: .97em;
  }
  h1 {
    font-size: 1.47rem;
  }
  h2 {
    font-size: 1.25rem;
  }
}
@media (max-width: 560px) {
  header .content-wrapper {
    padding: var(--sp-12) 0;
  }
  .hero .container, .cta .container {
    padding-left: var(--sp-8);
    padding-right: var(--sp-8);
  }
  .feature {
    padding: var(--sp-16);
    min-width: 0;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: var(--sp-16);
  }
}

/* Ensure no elements overlap or touch improperly on small screens */
.feature, .card, .testimonial-card, .section, .contact-summary ul li, .contact-information ul li, .topic-list ul li {
  margin-bottom: var(--sp-20);
}

/* ============
   PRINT FINE TUNING
   ============ */
@media print {
  header, nav, .mobile-menu, .mobile-menu-toggle, .cta, .footer, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  main, .section { box-shadow:none!important; background: #fff!important; color: #000!important; }
}
