/* =====================================================
   RESET & NORMALIZE (Basic Modern Reset)
====================================================== */
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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #F1FAEE;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* =====================================================
   FONT IMPORTS (Fallbacks included)
====================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --primary: #1D3557;
  --secondary: #457B9D;
  --accent: #F1FAEE;
  --gold: #D4AF37;
  --gold-dark: #B89C3A;
  --text-main: #232323;
  --text-bright: #fff;
  --bg-light: #F8F8F8;
  --bg-darker: #E8E8EA;
  --border-color: #EFEADA;
}

/* =====================================================
   LUXURY / PREMIUM BASE STYLE
====================================================== */
body {
  background: var(--bg-light);
  color: var(--text-main);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
p, ul, ol {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==============================================================
   HEADER & NAVIGATION (DESKTOP + MOBILE)
=============================================================== */
header {
  background: var(--primary);
  box-shadow: 0 1px 12px rgba(29,53,87,0.11);
  border-bottom: 1.5px solid var(--gold);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
header img {
  height: 40px;
  margin-right: 38px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
  border-bottom: 2.5px solid transparent;
  padding: 0 2px 4px 2px;
  transition: border-color 0.2s, color 0.2s;
  position: relative;
}
header nav a:hover, header nav a.active {
  color: var(--gold);
  border-bottom: 2.5px solid var(--gold);
}

.button-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--gold);
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 28px;
  padding: 10px 28px;
  margin-left: 12px;
  box-shadow: 0 2px 10px 0 rgba(212,175,55,0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  letter-spacing: 0.01em;
  position: relative;
}
.button-primary:hover, .button-primary:focus {
  background: var(--gold-dark);
  color: var(--accent);
  box-shadow: 0 4px 18px 0 rgba(212,175,55,0.18), 0 0 0 3px #b89c3a32;
}
.button-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  padding: 10px 28px;
  margin-left: 12px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--primary);
  color: var(--gold);
}

/* Hamburger Menu Button (mobile) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gold);
  margin-left: 20px;
  cursor: pointer;
  z-index: 1201;
  transition: color 0.2s;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--gold-dark);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(29,53,87,0.97);
  z-index: 1202;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.74,.14,.43,.87);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 4px 0 16px 0 rgba(29,53,87,0.21);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gold);
  margin: 24px 32px 0 0;
  cursor: pointer;
  z-index: 1203;
  transition: color 0.2s;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--gold-dark);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  gap: 4px;
  align-items: flex-start;
  padding-left: 38px;
  padding-right: 24px;
}
.mobile-nav a {
  padding: 14px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  width: 100%;
  border-bottom: 1px solid #ffffff22;
  transition: color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gold);
  background: none;
}

/* Hide mobile menu and burger on desktop */
@media (min-width: 1000px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}
/* Show mobile navigation burger and menu on mobile */
@media (max-width: 999px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
}

/* =======================================================
   MAIN PAGE HERO, SECTIONS, FLEX PATTERNS
======================================================== */
.hero {
  padding: 70px 0 40px 0;
  background: var(--primary);
  color: var(--accent);
  background-image: linear-gradient(95deg, #1D3557 85%, #E9D7B2 200%);
  border-bottom: 6px solid var(--gold);
  box-shadow: 0 5px 24px 0 rgba(29,53,87,0.16);
  text-align: left;
  position: relative;
}
.hero h1, .hero h2, .hero h3, .hero h4 {
  color: var(--accent);
}
.hero .button-primary {
  margin-top: 30px;
  font-size: 1.1rem;
  padding: 13px 36px;
}
.hero p {
  color: #e9e9e9;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

/***** GENERIC FLEX CONTAINER PATTERNS *****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(109,95,36,0.08);
  border: 1px solid var(--border-color);
  padding: 32px 26px 26px 26px;
  transition: box-shadow 0.22s, transform 0.17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 16px 42px 0 rgba(212,175,55,0.12), 0 8px 32px rgba(29,53,87,0.06);
  transform: translateY(-6px) scale(1.011);
  z-index: 2;
}
.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: var(--accent);
  border-radius: 18px;
  box-shadow: 0 3px 15px 0 rgba(29,53,87,0.08);
  border: 1.5px solid var(--gold);
  margin-bottom: 24px;
  max-width: 560px;
  position: relative;
  flex: 1 1 300px;
  min-width: 260px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 0 0 8px 0;
}

/***** UNIQUE CONTENT GRID LAYOUTS *****/
.feature-grid, .usp-grid, .option-grid, .team-members, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div,
.usp-grid > div,
.option-grid > div,
.team-members > div,
.testimonial-slider > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 26px 0 rgba(67,58,24,0.06);
  border: 1px solid var(--border-color);
  padding: 28px 22px 22px 22px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.14s;
  margin-bottom: 20px;
}
.feature-grid > div:hover,
.usp-grid > div:hover,
.option-grid > div:hover, 
.team-members > div:hover {
  box-shadow: 0 12px 40px 0 rgba(33,23,7,0.13);
  transform: translateY(-4px) scale(1.008);
  border-color: var(--gold);
}
.feature-grid img,
.usp-grid img,
.option-grid img,
.team-members img {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.article-list article {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px 0 rgba(83,71,11,0.07);
  border: 1px solid #eee3ba;
  padding: 18px 20px 16px 20px;
  margin-bottom: 20px;
  transition: transform 0.13s, box-shadow 0.16s;
}
.article-list article:hover, .article-list article:focus-within {
  transform: translateY(-4px) scale(1.009);
  box-shadow: 0 8px 34px 0 rgba(212,175,55,0.10);
  border-color: var(--gold);
}
.article-list h3 {
  color: var(--primary);
}

.category-navigation {
  display: flex;
  gap: 10px;
  margin: 18px 0 10px 0;
}
.category-navigation ul {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.category-navigation li {

}
.category-navigation a {
  display: inline-block;
  color: var(--gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 6px 18px;
  border-radius: 18px;
  border: 1px solid var(--gold);
  background: none;
  margin-bottom: 4px;
  transition: background 0.16s, color 0.16s, border-color 0.16s;
}
.category-navigation a:hover, .category-navigation a.active {
  background: var(--gold);
  color: var(--primary);
}

/***** CTA STRIP *****/
.cta-strip {
  background: var(--gold);
  color: var(--primary);
  padding: 28px 0;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(212,175,55,0.07);
  margin: 46px 0 0 0;
}
.cta-strip .container {
  justify-content: center;
  align-items: center;
}
.cta-strip .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 0;
}
.cta-strip .button-primary {
  margin: 0 auto;
}
.cta-strip span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
}

/***** STEP-TIMELINE / LISTS *****/
.step-timeline, .step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0 0 0;
  counter-reset: steps;
}
.step-timeline li, .step-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 220px;
  background: #fff;
  padding: 25px 20px 20px 20px;
  border-radius: 14px;
  box-shadow: 0 4px 17px 0 rgba(29,53,87,0.05);
  border: 1.5px solid var(--gold);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  position: relative;
  margin-bottom: 12px;
  min-width: 190px;
  min-height: 122px;
  transition: box-shadow 0.12s, border-color 0.12s;
}
.step-timeline li:hover, .step-list li:hover {
  box-shadow: 0 7px 25px 0 rgba(212,175,55,0.14);
  border-color: var(--primary);
}
.step-timeline li img, .step-list li img {
  width: 38px;
  height: 38px;
  margin-bottom: 13px;
}
.step-timeline li span, .step-list li span {
  font-size: 0.95rem;
  color: var(--secondary);
  margin-top: 6px;
}

/***** FAQ / TIPS LIST *****/
.faq-list, .faq-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 22px 0;
}
.faq-item, .faq-snippet {
  flex: 1 1 260px;
  min-width: 200px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(69,123,157,0.07);
  border: 1px solid #ece3cc;
  padding: 18px 20px 12px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s;
}
.faq-item:hover, .faq-snippet:hover {
  box-shadow: 0 7px 18px 0 rgba(212,175,55,0.10);
  border-color: var(--gold);
}
.faq-list h3, .faq-snippet h3 {
  margin-bottom: 8px;
  color: var(--secondary);
  font-size: 1.1rem;
}
input[type="search"] {
  display: block;
  width: 100%;
  border: 1.5px solid var(--secondary);
  padding: 11px 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.12s;
}
input[type="search"]:focus {
  border-color: var(--gold);
  outline: 2px solid #d4af3733;
}

/***** TEAM MEMBERS LAYOUT *****/
.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.team-members > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px 0 rgba(69,123,157,0.09);
  border: 1.5px solid #ead986;
  padding: 26px 22px 22px 22px;
  flex: 1 1 300px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.17s, border-color 0.17s;
  margin-bottom: 20px;
}
.team-members > div:hover {
  box-shadow: 0 12px 40px 0 rgba(33,23,7,0.10);
  border-color: var(--gold);
}

/***** ADDRESS & CONTACT BLOCKS *****/
.address-block, .phone-block, .email-block, .opening-hours {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #efeada;
  padding: 10px 14px;
  margin-bottom: 12px;
}
.address-block img, .phone-block img, .email-block img, .opening-hours img {
  width: 24px;
  height: 24px;
}
.hint {
  margin-top: 24px;
  padding: 12px 0 0 0;
  color: var(--secondary);
  font-size: 1.11rem;
}

/***** LISTS *****/
ul.tips-list, ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 18px;
}
ul.tips-list li, ul li { margin-bottom: 10px; }
ol { margin-left: 20px; margin-bottom: 18px; }
ol li { margin-bottom: 10px; }

/***** TESTIMONIALS STYLING *****/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.testimonial-card {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 18px;
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 18px 0 rgba(233,215,178,0.08);
  padding: 22px 22px 13px 22px;
  min-width: 260px;
  max-width: 390px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
  font-size: 1.09rem;
}
.testimonial-card strong {
  color: var(--secondary);
  font-weight: 700;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.08rem;
  margin-bottom: 13px;
}
.testimonial-card span {
  font-size: 1rem;
}

/***** COOKIE BANNER & SETTINGS MODAL *****/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #fff8ea;
  color: var(--primary);
  border-top: 2.5px solid var(--gold);
  box-shadow: 0 -3px 24px 0 rgba(212,175,55,0.19);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 23px 24px;
  gap: 32px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.36s cubic-bezier(.8,.2,.45,1.08);
  will-change: transform;
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-banner__text {
  flex: 2 1 380px;
  color: #614d19;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--gold);
  color: var(--primary);
  border: none;
  border-radius: 22px;
  padding: 8px 22px;
  font-size: .98rem;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--gold-dark);
  color: var(--accent);
  box-shadow: 0 2px 12px 0 rgba(212,175,55,0.15);
}
.cookie-banner .button-secondary {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .button-secondary:hover {
  background: var(--primary);
  color: var(--gold);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,22,31,0.54);
  z-index: 2050;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.19s;
  opacity: 1;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 44px 0 rgba(212,175,55,0.13);
  padding: 38px 32px 28px 32px;
  max-width: 410px;
  min-width: 310px;
  width: 94vw;
  position: relative;
  text-align: left;
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 19px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category label {
  flex: 1 1 auto;
  font-size: 1.03rem;
}
.cookie-modal .cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: var(--gold);
  border-radius: 6px;
}
.cookie-modal .cookie-category .locked {
  color: var(--secondary);
  font-size: .92rem;
  margin-left: 8px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 1.32rem;
  position: absolute;
  top: 13px; right: 21px;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--gold-dark);
}

/* =====================
   FOOTER
===================== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 46px 0 16px 0;
  border-top: 3px solid var(--gold);
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 46px;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer img {
  height: 38px;
  margin-bottom: 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
footer nav a {
  color: var(--gold);
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.16s;
}
footer nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.contact-info {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: .98rem;
  color: var(--gold);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info img { height: 18px; width: 18px; margin-right: 4px; vertical-align: middle; }

/* =====================
   THANK YOU PAGE
===================== */
.thank-you-message {
  color: var(--primary);
  font-size: 1.22rem;
  margin-bottom: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* =====================
   MISCELLANEOUS
===================== */
hr {
  border: none;
  border-top: 1.5px solid var(--border-color);
  margin: 40px 0;
}
a {
  color: var(--secondary);
  text-decoration: underline;
  transition: color 0.17s;
}
a:hover, a:focus {
  color: var(--gold);
}

/* =====================
   MEDIA QUERIES
===================== */
@media (max-width: 1280px) {
  .container { max-width: 98vw; }
}
@media (max-width: 1024px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .feature-grid > div, .usp-grid > div, .option-grid > div, .team-members > div {
    min-width: 180px;
    max-width: 98vw;
    flex: 1 1 225px;
  }
  .card-container, .testimonial-slider, .content-grid, .team-members, .feature-grid, .usp-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.10rem; }
  .section, section { padding: 30px 6px; }
  .container, .content-wrapper { padding: 0 6px; }
  .hero { padding: 40px 0 20px 0; border-radius: 0; }
  .feature-grid, .usp-grid, .option-grid, .team-members, .testimonial-slider, .content-grid, .card-container {
    flex-direction: column;
    gap: 17px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
  }
  .cta-strip {
    padding: 21px 0;
    border-radius: 13px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100vw;
    padding: 15px 9px 11px 13px;
  }
  .card {
    padding: 22px 10px 15px 15px;
    min-width: 0;
    max-width: 100vw;
  }
  .feature-grid > div, .usp-grid > div, .option-grid > div,.team-members > div {
    min-width: 0;
    max-width: 100vw;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
}
@media (max-width: 600px) {
  h1, h2, h3, h4 { text-align: left; }
  .faq-list, .faq-preview, .feature-grid, .usp-grid, .option-grid, .team-members, .testimonial-slider { gap: 8px; }
  .card, .testimonial-card, .feature-grid > div, .usp-grid > div, .option-grid > div, .team-members > div { padding: 13px 4vw 12px 4vw; }
  .cta-strip .content-wrapper { gap: 13px; }
  .category-navigation ul { gap: 6px; }
  .cookie-banner { flex-direction: column; gap: 14px; align-items: flex-start; padding: 18px 11px; }
  .cookie-banner__text { font-size: .97rem; }
  .cookie-banner__actions { gap: 10px; padding-bottom: 7px; }
  .cookie-modal { min-width: 0; padding: 18px 7px 13px 11px; }
}

/* =====================
   ANIMATIONS & TRANSITIONS
===================== */
.button-primary,.button-secondary, .category-navigation a, input[type=search], .card, .feature-grid > div, .usp-grid > div, .option-grid > div, .team-members > div, .testimonial-card, .article-list article {
  transition: box-shadow 0.18s, background 0.16s, color 0.16s, transform 0.13s, border-color 0.15s;
}

/* Utility: visually hide elements (for accessibility) */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
