/* PescaViva Soft Pastel CSS - Mobile First */

/* ===================== */
/* 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,
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 {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background: #F8F9FA;
  color: #263139;
  font-size: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  box-sizing: border-box;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  border-radius: 8px;
}
a {
  color: #21556A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #588799;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 12px;
  font-size: 1em;
}
button, input, select, textarea {
  font-family: "Open Sans", Arial, sans-serif;
  outline: none;
  border: none;
  background: none;
  color: #21556A;
}
button {
  cursor: pointer;
}

/* ======================== */
/* CSS Variables (Fallback) */
/* ======================== */
:root {
  --primary: #21556A;
  --primary-light: #588799;
  --secondary: #7CB992;
  --secondary-light: #B9E2CD;
  --accent: #F8F9FA;
  --pastel-blue: #B9DFFC;
  --pastel-green: #D6F6DD;
  --pastel-pink: #FBE7E3;
  --pastel-yellow: #FFF6DA;
  --soft-shadow: 0 2px 14px 0 rgba(67, 106, 120, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
}

/* ================================== */
/* Typography - Soft Pastel Hierarchy */
/* ================================== */
h1, .h1 {
  font-family: 'Merriweather', serif;
  color: var(--primary);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
h2, .h2 {
  font-family: 'Merriweather', serif;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: 'Merriweather', serif;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Merriweather', serif;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
p, .about-bio {
  color: #2D3D40;
  font-size: 1.06rem;
  margin-bottom: 14px;
  line-height: 1.9;
}
strong {
  color: var(--primary);
  font-weight: 700;
}

/* Spacing Utility */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* =================== */
/* Header & Navigation */
/* =================== */
header {
  width: 100%;
  background: linear-gradient(0deg, #F8F9FA 92%, var(--pastel-blue) 100%);
  box-shadow: var(--soft-shadow);
  padding-top: 10px;
  z-index: 20;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  gap: 8px;
}
.main-nav > a img {
  max-height: 50px;
  margin-right: 12px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  align-items: center;
}
.main-nav ul li {
  margin: 0;
}
.main-nav ul li a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.18s, color 0.13s;
  font-weight: 500;
}
.main-nav ul li a.nav-cta,
.nav-cta {
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 6px 0 rgba(67, 106, 120, 0.07);
  transition: background 0.2s, color 0.2s;
}
.main-nav ul li a.nav-cta:hover,
.nav-cta:hover {
  background: var(--primary);
  color: #fff;
}
.main-nav ul li a:hover {
  background: var(--secondary-light);
  color: var(--primary);
}

/* ======================= */
/* Mobile Menu Burger Icon */
/* ======================= */
.mobile-menu-toggle {
  display: flex;
  height: 44px;
  width: 44px;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--primary);
  background: var(--pastel-blue);
  border-radius: 50%;
  border: none;
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 110;
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--secondary-light);
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 900px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* ======================= */
/* Mobile Slide Nav Styles  */
/* ======================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  background: rgba(220,234,240, 0.99);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.85,0.08,0.53,0.98);
  box-shadow: 0 4px 32px 0 rgba(33,85,106,0.17);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 2.2rem;
  color: var(--primary);
  background: var(--pastel-pink);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 210;
  box-shadow: var(--soft-shadow);
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.mobile-menu-close:hover {
  background: var(--secondary-light);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 34px;
  margin-top: 30px;
}
.mobile-nav a {
  font-family: 'Merriweather', serif;
  font-size: 1.28rem;
  color: var(--primary);
  font-weight: 600;
  padding: 13px 32px;
  border-radius: var(--radius-md);
  background: var(--pastel-green);
  box-shadow: 0 2px 8px 0 rgba(33,85,106,0.06);
  margin-bottom: 2px;
  border: none;
  transition: background 0.16s, color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}

/* ============================= */
/* Core Layout Spacing Patterns   */
/* ============================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
  padding: 28px 20px;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(67, 106, 120, 0.13);
}
.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;
  margin-bottom: 20px;
  background: var(--pastel-yellow);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px 0 rgba(67, 106, 120, 0.09);
  flex-direction: column;
  font-size: 1.06rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================================ */
/* HERO + CTA + VISUAL SECTIONS     */
/* ================================ */
.hero {
  background: linear-gradient(180deg, var(--pastel-blue) 55%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  margin-top: 16px;
  margin-bottom: 40px;
  box-shadow: var(--soft-shadow);
  display: flex;
  align-items: center;
}
.hero .container {
  padding-top: 20px;
  padding-bottom: 20px;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 14px;
}
.cta {
  background: var(--pastel-green);
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
  text-align: left;
}
.cta h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 8px;
  font-family: 'Merriweather', serif;
}
.cta .btn-primary {
  margin-top: 8px;
}

/* ======================== */
/* Feature Grid + Cards     */
/* ======================== */
.features {
  background: var(--pastel-yellow);
  border-radius: var(--radius-md);
}
.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 18px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 0;
  transition: box-shadow 0.22s, transform 0.18s;
}
.feature-card img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px 0 rgba(67, 106, 120, 0.11);
  margin-bottom: 5px;
}
.feature-card:hover {
  box-shadow: 0 6px 28px 0 rgba(67, 106, 120, 0.13);
  transform: translateY(-2px) scale(1.015);
}
.features ul {
  margin-left: 24px;
  margin-top: 12px;
}
.features ul li {
  padding-left: 10px;
  position: relative;
}
.features ul li::before {
  content: '•';
  color: var(--primary);
  font-size: 1.14em;
  position: absolute;
  left: -16px;
  top: -1px;
}

/* =================== */
/* Service List Styles */
/* =================== */
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.service-box {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
  padding: 22px 18px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  min-width: 230px;
  transition: box-shadow 0.18s, transform 0.19s;
}
.service-box:hover {
  box-shadow: 0 6px 26px 0 rgba(67,106,120,0.11);
  transform: translateY(-3px) scale(1.01);
}
.price, .price-highlight {
  background: var(--pastel-green);
  display: inline-block;
  color: var(--primary);
  font-weight: bold;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  padding: 5px 13px;
  margin-top: 10px;
  margin-bottom: 0;
}
.price-highlight {
  background: var(--secondary);
  color: #fff;
}

/* =========================== */
/* Testimonials and Reviews    */
/* =========================== */
.testimonials h2 {
  margin-bottom: 18px;
}
.testimonial-card {
  background: var(--pastel-yellow);
  color: #263139;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px 0 rgba(67, 106, 120, 0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  padding: 24px 20px;
  min-width: 0;
}
.testimonial-text {
  font-family: 'Merriweather', serif;
  font-size: 1.08rem;
  color: #263139;
  margin-bottom: 8px;
  line-height: 1.8;
  font-style: italic;
}
.testimonial-author {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.97rem;
  margin-top: 4px;
  letter-spacing: 0.2px;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* ============= */
/* About Section */
/* ============= */
.about {
  background: var(--pastel-pink);
  border-radius: var(--radius-md);
}
.about-bio {
  font-size: 1.09rem;
  margin-top: 8px;
  margin-bottom: 10px;
}

/* =============== */
/* History/Timeline */
/* =============== */
.timeline {
  margin-left: 0;
  margin-bottom: 26px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.timeline li {
  position: relative;
  padding-left: 1.7em;
  font-size: 1em;
  color: #3B6678;
}
.timeline li:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0.3em;
  top: 0.5em;
  width: 10px;
  height: 10px;
  background: var(--pastel-green);
  border-radius: 50%;
  border: 2px solid var(--secondary);
}

/* ============= */
/* Contact Block */
/* ============= */
.contact-details {
  background: var(--pastel-green);
  border-radius: var(--radius-md);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.contact-info p img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}
.contact-cta {
  background: var(--pastel-yellow);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}
.map-section {
  background: var(--pastel-blue);
  border-radius: var(--radius-md);
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 28px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--soft-shadow);
  padding: 18px;
  flex-wrap: wrap;
}
.map-placeholder img {
  height: 60px;
  width: 60px;
  border-radius: var(--radius-sm);
  margin-right: 10px;
}

/* ======================= */
/* Legal / Policy Content  */
/* ======================= */
.legal {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
}
.legal h1 {
  font-size: 2.1rem;
  margin-bottom: 12px;
}
.legal h2 {
  margin-top: 24px;
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.legal ul {
  margin-left: 30px;
  margin-bottom: 22px;
}
.legal ul li {
  margin-bottom: 10px;
}

/* ================ */
/* Confirmation     */
/* ================ */
.confirmation {
  background: var(--pastel-green);
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
  text-align: center;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirmation h1 {
  margin-bottom: 10px;
  font-size: 2rem;
}
.confirmation h2 {
  font-size: 1.3rem;
  color: var(--secondary);
}
.confirmation p {
  margin-bottom: 18px;
}

/* ===================== */
/* Footer Styles         */
/* ===================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 36px 0 0 0;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  box-shadow: 0 -2px 18px 0 rgba(33,85,106,.04);
  margin-top: 50px;
}
.footer-logo-social {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}
.footer-logo-social img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #F8F9FA;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  transition: background 0.2s, color 0.17s;
}
.footer-nav a:hover {
  background: var(--accent);
  color: var(--primary);
}
.footer-contact {
  color: #F8F9FA;
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  vertical-align: middle;
}

/* =================== */
/* Button Styles   */
/* =================== */
.btn-primary {
  display: inline-block;
  font-family: 'Merriweather', serif;
  background: var(--secondary);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 2px 14px 0 rgba(33,85,106,0.07);
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.18s, color 0.16s, box-shadow 0.14s, transform 0.14s;
  outline: none;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 7px 24px 0 rgba(33,85,106,0.14);
  transform: translateY(-1px) scale(1.03);
}

/* ===================== */
/* Micro-Interaction FX  */
/* ===================== */
section,
.card,
.feature-card,
.service-box,
.testimonial-card,
.footer-nav a,
.btn-primary,
.mobile-menu,
.mobile-menu-close,
.mobile-menu-toggle {
  transition-timing-function: cubic-bezier(.32,.72,.37,.98);
}

/* Modal Fade, Slide etc */
.fade-in {
  opacity: 0;
  animation: fadeInPastel 0.7s ease forwards;
}
@keyframes fadeInPastel {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.slide-in {
  transform: translateY(30px);
  opacity: 0;
  animation: slideInPastel 0.7s cubic-bezier(.32,.72,.37,.98) forwards;
}
@keyframes slideInPastel {
  to { transform: none; opacity: 1; }
}

/* ============================== */
/* COOKIE CONSENT BANNER & MODAL  */
/* ============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  background: var(--pastel-blue);
  color: #263139;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  box-shadow: 0 -6px 24px 0 rgba(33,85,106,0.13);
  padding: 22px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  animation: slideUpCookie 0.7s cubic-bezier(.32,.72,.37,.98) 0.13s 1 forwards;
  opacity: 0.98;
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 0.98; }
}
.cookie-banner p {
  margin-bottom: 2px;
  font-size: 1.07rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  background: var(--secondary);
  color: #fff;
  padding: 7px 18px;
  border: none;
  font-weight: 700;
  margin-top: 3px;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, transform 0.14s;
  box-shadow: 0 2px 8px 0 rgba(33,85,106,0.08);
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px) scale(1.04);
}
.cookie-banner .cookie-settings-btn {
  background: var(--primary-light);
  color: #fff;
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--secondary);
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(220,234,240,0.91);
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInPastel 0.5s cubic-bezier(.42,.71,.47,.98) forwards;
}
.cookie-modal {
  background: #fff;
  color: #21556A;
  padding: 30px 22px 18px 22px;
  border-radius: var(--radius-lg);
  min-width: 310px;
  max-width: 98vw;
  box-shadow: 0 8px 48px 0 rgba(33,85,106,0.18);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2100;
  animation: slideInPastel 0.5s cubic-bezier(.32,.68,.3,.98) forwards;
}
.cookie-modal h2 {
  color: var(--primary);
  font-family: 'Merriweather', serif;
  font-size: 1.45rem;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-modal .cookie-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--pastel-blue);
  border-radius: 22px;
  transition: background 0.23s;
}
.cookie-modal .switch input:checked + .slider { background: var(--secondary); }
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 2px; bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.23s;
  box-shadow: 0 1px 4px rgba(33,85,106,0.13);
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(20px);
}
.cookie-modal .cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal button {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  padding: 7px 18px;
  font-weight: 700;
  border: none;
  background: var(--secondary);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(33,85,106,0.06);
  transition: background 0.16s, color 0.14s;
}
.cookie-modal button:hover {
  background: var(--primary);
}
.cookie-modal .cookie-close-modal {
  background: var(--pastel-pink);
  color: var(--primary);
  margin-left: 0;
}
.cookie-modal .cookie-close-modal:hover {
  background: var(--accent);
  color: var(--primary);
}

/* ============================= */
/* FLEXBOX ONLY (mobile-first)    */
/* Responsive: Column first */
/* ============================= */
.content-grid,
.feature-grid,
.service-list,
.card-container {
  flex-direction: column;
}
.text-image-section {
  flex-direction: column;
}
.footer-nav, .footer-contact {
  flex-direction: column;
}
@media (min-width: 710px) {
  .feature-grid,
  .card-container,
  .service-list,
  .content-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .feature-card, .service-box, .card {
    flex: 1 1 210px;
    min-width: 210px;
    max-width: 330px;
  }
  .text-image-section {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
  .footer-nav {
    flex-direction: row;
    gap: 28px;
    justify-content: flex-start;
  }
}
@media (min-width: 1000px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* ============================= */
/* General Responsive Adjustments */
/* ============================= */
@media (max-width: 700px) {
  h1,.h1 { font-size: 2rem; }
  h2,.h2 { font-size: 1.28rem; }
  .hero { padding: 28px 8px; }
  .cta, .features, .about, .map-section, .legal, .confirmation, .contact-details {
    padding: 18px 7px;
    margin-bottom: 36px;
  }
  .feature-card, .service-box, .testimonial-card {
    padding: 14px 10px;
  }
  section, .section {
    padding: 26px 7px;
    margin-bottom: 38px;
  }
  .footer-logo-social img {
    height: 38px;
  }
  .testimonial-card {
    font-size: 1em;
  }
}
@media (max-width: 470px) {
  h1,.h1 { font-size: 1.45rem; }
  h2,.h2 { font-size: 1.06rem; }
  .main-nav > a img {
    max-height: 38px;
  }
  .cookie-modal { min-width: 98vw; border-radius: var(--radius-md); padding: 15px 5px 12px 8px; }
}

/* ==================================== */
/* BRAND FONTS IMPORT (only if missing) */
/* ==================================== */
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');


/* ================== */
/* Accessibility      */
/* ================== */
:focus {
  outline: 2px dashed var(--secondary);
  outline-offset: 2px;
  z-index: 10;
}

/* Hide visually but keep accessible  */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}