/*
===============================================================
EMERALD EXPANSE THERME - TECH FUTURISTIC STYLE.CSS
Brand: Modern, luxurious, tech-futuristic with greens & sleek whites
===============================================================
*/
/* ===== CSS RESET & BASIC NORMALIZATION ===== */
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.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #0f2121;
  color: #EFFAF5;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #29ebc7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #12C18A;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* ===== COLORMAP ===== */
:root {
  --color-primary: #175B45;
  --color-secondary: #EFFAF5;
  --color-accent: #2D8C6B;
  --color-bg: #0f2121;
  --color-white: #FFFFFF;
  --color-black: #212121;
  --color-neon: #12C18A;
  --color-border: #2e4942;
  --color-muted: #639b81;
  --color-navbar-bg: #132830;
  --color-card-bg: #10241e;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.16;
  color: var(--color-white);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.95rem; }
p, ul, ol, li, span, label {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-secondary);
  font-size: 1rem;
}
.section h2 {
  font-size: 2rem;
}

/* ======== ALL FLEX LAYOUTS - SPACING CONSISTENCY ======== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { /* for future use */
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.card {
  background: var(--color-card-bg);
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(18, 193, 138, 0.05);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 28px 20px 28px;
  border: 1.5px solid var(--color-border);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.25s;
  z-index: 1;
}
.card:hover {
  border-color: var(--color-neon);
  box-shadow: 0 4px 24px 0 rgba(18, 193, 138, 0.18);
  transform: translateY(-6px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.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;
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HERO === */
.hero {
  background: linear-gradient(123deg, #10241e 80%, #12C18A 150%);
  border-bottom: 2px solid var(--color-primary);
  padding: 54px 0 48px 0;
  margin-bottom: 60px;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(18, 193, 138, 0.08);
  font-size: 2.3rem;
}
.hero p {
  color: #EFFAF5;
  font-size: 1.16rem;
  max-width: 570px;
  margin-bottom: 12px;
}
.hero .cta-button {
  margin-top: 28px;
}

/* =========== NAVIGATION STYLES ========== */
header {
  width: 100%;
  background: var(--color-navbar-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 99;
  padding: 16px 0 16px 0;
  min-height: 64px;
  box-shadow: 0 1px 20px 0 rgba(18, 193, 138, 0.08);
}
.header-logo {
  display: flex;
  align-items: center;
  margin-left: 26px;
}
.header-logo img {
  max-height: 44px;
  transition: filter 0.18s;
}
header .main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
header .main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  color: #EFFAF5;
  position: relative;
  padding: 6px 8px;
  transition: color 0.15s, box-shadow 0.18s;
  border-radius: 5px;
}
header .main-nav a:not(.cta-button):hover {
  color: var(--color-neon);
  background: rgba(45, 140, 107, 0.11);
  text-shadow: 0 2px 10px rgba(18, 193, 138, 0.13);
}
.cta-button {
  background: var(--color-neon);
  color: #232b27;
  padding: 9px 24px;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 28px 0 rgba(18,193,138,0.25);
  border: none;
  margin-left: 10px;
  transition: background 0.22s, color 0.22s, box-shadow 0.2s, transform 0.19s;
  outline: none;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: #16FFB2;
  color: #0a2924;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 34px 0 rgba(18,193,138,0.31);
}
.secondary-link {
  color: var(--color-neon);
  text-decoration: underline;
  font-weight: 500;
  margin-left: 22px;
  font-size: 1rem;
}
.secondary-link:hover { color: #fff; }

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: var(--color-neon);
  margin-right: 18px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.17s, color 0.23s;
  z-index: 120;
}
.mobile-menu-toggle:hover {
  background: rgba(18,193,138,0.09);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #10241e;
  box-shadow: 0 0 64px 0 rgba(18, 193, 138, 0.19);
  transform: translateX(-100vw);
  transition: transform 0.44s cubic-bezier(.45,.04,.16,1.02), opacity 0.28s;
  opacity: 0;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  padding-top: 48px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 23px;
  color: var(--color-neon);
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3100;
  border-radius: 50%;
  padding: 4px 12px;
  transition: background 0.17s;
}
.mobile-menu-close:hover {
  background: rgba(18,193,138,0.13);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 52px;
  padding: 12px 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 8px;
  transition: color 0.19s, background 0.20s;
}
.mobile-nav a:hover {
  background: rgba(18,193,138,0.11);
  color: var(--color-neon);
}

/* Hide main nav, show burger on < 1024px */
@media (max-width: 1024px) {
  header .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* show main nav, hide burger on desktop */
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* ========== FEATURES GRIDS & LISTS ========== */
.features, .about, .contact, .services, .legal, .confirmation {
  background: #10241e;
  border-radius: 18px;
  box-shadow: 0 2px 32px 0 rgba(45,140,107,0.04);
  margin-bottom: 48px;
  padding: 40px 20px;
}
.features h2 { color: var(--color-neon); }
.features ul, .features .event-list {
  margin-left: 1.6em;
  margin-bottom: 24px;
  color: var(--color-muted);
}
.features ul li, .features .event-list li {
  margin-bottom: 14px;
  list-style: disc inside;
  font-size: 1.01rem;
}
.features .price-table {
  width: 100%;
  margin-bottom: 28px;
  overflow-x: auto;
}
.features table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg);
  border-radius: 14px;
  box-shadow: 0 2px 32px 0 rgba(18,193,138,0.07);
  margin-bottom: 0;
}
.features th, .features td {
  text-align: left;
  padding: 12px 16px;
  font-size: 1.06rem;
}
.features th {
  color: var(--color-neon);
  border-bottom: 2px solid var(--color-accent);
  font-weight: 700;
}
.features td {
  border-bottom: 1px solid var(--color-border);
}
.features tr:last-child td { border-bottom: none; }
.features .special-offers, .features .group-rates {
  margin: 22px 0;
}

/* ==== CATEGORY TABS ==== */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 24px;
  margin-top: 10px;
}
.category-tabs span {
  padding: 8px 18px;
  border-radius: 50px;
  background: #174e39;
  color: var(--color-neon);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 1.2px solid var(--color-neon);
  box-shadow: 0 2px 6px 0 rgba(18,193,138,0.09);
  transition: background 0.18s, color 0.18s, border-color 0.20s;
}
.category-tabs span:hover {
  background: var(--color-neon);
  color: #0a2924;
  border-color: #16FFB2;
}

/* ==== TREATMENT LIST ==== */
.treatment-list h3 {
  color: var(--color-neon);
  margin-bottom: 4px;
  margin-top: 20px;
}
.treatment-list p {
  margin-bottom: 12px;
  color: var(--color-muted);
}
.spa-packs ul, .special-offers ul, .group-rates ul {
  margin-left: 1.5em;
  color: var(--color-muted);
  margin-bottom: 13px;
}
.spa-packs ul li, .special-offers ul li, .group-rates ul li {
  margin-bottom: 6px;
  font-size: 1rem;
  list-style: disc inside;
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  background: var(--color-secondary);
  color: var(--color-black);
  border-radius: 18px;
  box-shadow: 0 2px 28px 0 rgba(18,193,138,0.07);
  margin-bottom: 60px;
  padding: 44px 20px;
}
.testimonials h2 {
  color: var(--color-primary) !important;
  margin-bottom: 30px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(18, 193, 138, 0.07);
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-neon);
  min-height: 100px;
}
.testimonial-card .text-section {
  color: #232f24;
  font-size: 1.12rem;
  flex: 1 1 0%;
}
.testimonial-card p {
  color: #0e2f20;
}
.testimonial-card .stars {
  margin: 12px 0 0 0;
  display: flex;
  gap: 4px;
}
.testimonial-card .stars img { height: 18px; }
.reviewer {
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  margin-top: 6px;
  display: inline-block;
}

/* ==== CALL TO ACTION (CTA) ==== */
.cta {
  background: linear-gradient(91deg, #123d35 65%, #175B45 115%);
  border-radius: 18px;
  box-shadow: 0 4px 26px 0 rgba(18,193,138,0.11);
  padding: 48px 20px;
  margin-bottom: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta h2 { color: var(--color-neon); }
.cta .cta-button { margin-right: 22px; }

/* ==== FOOTER ==== */
footer {
  background: linear-gradient(97deg, var(--color-primary) 64%, #10241e 92%);
  color: var(--color-secondary);
  padding: 36px 16px 16px 16px;
  margin-top: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -1px 20px 0 rgba(18,193,138,0.10);
}
.footer-logo {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}
.footer-logo img {
  height: 40px;
  filter: brightness(1.5);
}
.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
}
.footer-nav a {
  color: #EFFAF5;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  opacity: 0.95;
  padding: 5px 6px;
  border-radius: 4px;
  transition: color 0.17s, background 0.2s;
}
.footer-nav a:hover {
  background: var(--color-neon);
  color: #0a2824;
}
.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  color: #E0F6EC;
  font-size: 1.01rem;
}
.footer-contact-details img {
  height: 16px;
  vertical-align: middle;
  margin-right: 6px;
}
.footer-legal {
  color: #bce0d2;
  font-size: 0.95rem;
  text-align: center;
  margin-top: 12px;
}

/* ====== ABOUT & TEXT-SECTION ====== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 11px;
  color: #c9f7dd;
  margin-bottom: 8px;
}
.text-section h3 {
  color: var(--color-neon);
}
.text-section ul {
  margin-left: 1.5em;
}
.text-section ul li {
  margin-bottom: 5px;
  list-style: circle inside;
}

/* ======= MAP & CONTACT DETAILS SPECIALS ======= */
.map-section, .public-transport-tips, .parking_info {
  background: #143924;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(18,193,138,0.04);
  padding: 16px 24px;
  margin-bottom: 20px;
  color: #EBFFF5;
}
.map-section strong { color: var(--color-neon); }

/* ====== LEGAL/TEXT PAGES ====== */
.legal h1 {
  color: var(--color-neon);
}
.legal h2 {
  color: var(--color-accent);
  margin-top: 24px;
}
.privacy-policy-text, .cookie-policy-text, .gdpr-compliance-text, .terms-of-use-text {
  color: #d6f2ea;
  font-size: 1rem;
  margin-top: 9px;
}
.privacy-policy-text ul, .cookie-policy-text ul, .gdpr-compliance-text ul, .terms-of-use-text ul {
  margin-left: 1.3em;
  margin-bottom: 13px;
  color: #8de1c1;
}
.privacy-policy-text ul li, .cookie-policy-text ul li, .gdpr-compliance-text ul li, .terms-of-use-text ul li {
  margin-bottom: 5px;
  list-style: disc inside;
}

.confirmation .next-steps {
  background: #143924;
  border-radius: 10px;
  padding: 14px 24px;
  margin: 16px 0 20px 0;
  color: #b0e2d0;
}

/* ============= BUTTONS ============= */
button, .cta-button {
  cursor: pointer;
  user-select: none;
  outline: none;
  border: none;
}

/* ============ COOKIE CONSENT BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #10241e;
  color: #EFFAF5;
  z-index: 9000;
  box-shadow: 0 0 24px 0 rgba(18,193,138,0.10);
  border-top: 3px solid var(--color-neon);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  justify-content: center;
  font-size: 1rem;
  padding: 22px 20px 22px 20px;
  animation: banner-slide-up 630ms cubic-bezier(.59,-0.05,.23,1.01);
}
@keyframes banner-slide-up {
  0% { opacity: 0; transform: translateY(120px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 340px;
  color: #eef8f1;
  font-size: 1.01rem;
  margin-bottom: 8px;
}
.cookie-banner .cookie-btn {
  background: var(--color-neon);
  color: #123d35;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.03rem;
  margin: 0 6px 0 0;
  border-radius: 18px;
  padding: 8px 18px;
  transition: background 0.19s, color 0.19s, box-shadow 0.21s;
  box-shadow: 0 2px 14px 0 rgba(18,193,138,0.09);
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #16FFB2;
  color: #0b281e;
  box-shadow: 0 4px 24px 0 rgba(18,193,138,0.18);
}
.cookie-banner .cookie-btn.settings {
  background: none;
  color: var(--color-neon);
  border: 1.2px solid var(--color-neon);
  padding: 8px 20px;
}
.cookie-banner .cookie-btn.settings:hover {
  background: var(--color-neon);
  color: #123d35;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16,36,30,0.87);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  color: #10241e;
  width: 98vw;
  max-width: 410px;
  padding: 32px 28px 22px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 64px 0 rgba(18,193,138,0.20);
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: cookie-modal-pop 490ms cubic-bezier(.58,.06,.19,1.05);
  position: relative;
}
@keyframes cookie-modal-pop {
  0% { opacity: 0; transform: scale(0.86) translateY(48px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  color: var(--color-neon);
  font-size: 1.33rem; margin-bottom: 10px;
}
.cookie-preference-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.cookie-category .essential-label {
  color: #8BBCAB;
  font-size: 0.97rem;
}
.cookie-category label {
  color: #10241e; font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
}
.toggle-switch {
  position: relative;
  width: 42px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  background: #c2ece2;
  border-radius: 18px;
  top: 0;
  left: 0;
  height: 22px;
  width: 42px;
  transition: background 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: #13b88d;
}
.toggle-slider:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.23s;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 6px;
}
.cookie-modal button {
  background: var(--color-neon);
  color: #10241e;
  border-radius: 16px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}
.cookie-modal button:hover { background: #16FFB2; color: #112920; }
.cookie-modal .close-modal {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  color: #14b780;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  padding: 2px 8px;
  transition: background 0.18s;
  border-radius: 12px;
}
.cookie-modal .close-modal:hover { background: #eafcf7; color: #145c40; }

/* ==================================================end cookie styles */

/* ===== ACCESSIBILITY / SELECTION ===== */
::selection {
  background: var(--color-neon);
  color: #10241e;
}
:focus:not(:focus-visible) {
  outline: none !important;
}
:focus-visible {
  outline: 2px solid var(--color-neon);
  outline-offset: 2px;
}

/* ========== MICRO-INTERACTIONS & HOVERS ========= */
.card, .card-content, .feature-item, .testimonial-card, .cta-button, .cookie-btn, .cookie-modal button {
  transition-property: box-shadow, border-color, background, color, transform, opacity;
  transition-duration: 0.18s, 0.18s, 0.2s, 0.2s, 0.22s, 0.17s;
}

/* ========== RESPONSIVE DESIGN - MOBILE-FIRST ========== */
/* Sections already use mobile-first vertical stacking. 
   Increase font-sizes & flex-dirs on larger screens. */

@media (min-width: 600px) {
  .hero h1 { font-size: 2.6rem; }
  .section h2, .features h2, .about h2, .cta h2 {
    font-size: 2.12rem;
  }
}
@media (min-width: 850px) {
  .hero, .cta { padding: 68px 0 68px 0; }
  .features, .about, .contact, .services, .legal, .confirmation {
    padding: 46px 38px;
  }
  .content-wrapper { gap: 36px; }
  .testimonial-card { padding: 28px 30px; }
}
@media (min-width: 1080px) {
  .content-wrapper { flex-direction: row; }
  .section { padding: 48px 32px; }
  .features .content-wrapper, .about .content-wrapper, .contact .content-wrapper, .services .content-wrapper, .legal .content-wrapper, .confirmation .content-wrapper {
    flex-direction: row;
    gap: 44px;
    align-items: flex-start;
    justify-content: space-between;
  }
  .text-image-section { flex-direction: row; }
}
@media (max-width: 768px) {
  .container { padding: 0 6px; }
  .content-wrapper, .features .content-wrapper, .about .content-wrapper, .contact .content-wrapper, .services .content-wrapper, .legal .content-wrapper, .confirmation .content-wrapper {
    flex-direction: column !important;
    gap: 22px;
  }
  .section { padding: 36px 8px; }
  .hero, .cta { padding: 40px 0 40px 0; }
  .footer-contact-details, .footer-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
    align-items: center;
  }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
  .category-tabs { gap: 9px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.37rem; }
  .hero, .cta, .features, .about, .contact, .services, .legal, .confirmation {
    padding: 18px 2px;
  }
  .footer-logo img { height: 32px; }
}
