/* ====================================================
    CSS RESET & NORMALIZE (Vintage Retro w/ Brand Colors)
   ==================================================== */
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  min-height: 100vh;
  background: #FAF8F3;
  color: #3d3a32;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: #194A6D;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F9B233;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}
hr {
  margin: 32px 0;
  border: none;
  border-bottom: 1px dashed #C2C6CA;
}

/* =======================
   VINTAGE RETRO THEME
========================= */
:root {
  --color-primary: #194A6D;
  --color-secondary: #C2C6CA;
  --color-accent: #F9B233;
  --color-base-bg: #FAF8F3;
  --color-card-bg: #F5EAD7;
  --color-border: #C2A276;
  --color-shadow: rgba(36,26,0,0.09);
  --color-heading: #232017;
  --color-muted: #817867;
  --color-white: #fff;

  --shadow-card: 0 4px 22px var(--color-shadow),0 1.5px 0 #e6d9c4 inset;
  --shadow-btn: 0 2px 0 #b49b63,0 6px 18px rgba(25,74,109,0.08);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 6px;
}

/* Vintage retro font imports */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-heading);
  font-weight: 900;
  text-shadow: 1px 2px 0 #e5d1b8;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  margin-top: 0;
  font-weight: 700;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
p, .text-section {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #4d483a;
}
.text-section > ul, .text-section > ol {
  margin-bottom: 16px;
}
.text-section ul, .text-section ol {
  padding-left: 22px;
  list-style: disc inside none;
}
.text-section ul li, .text-section ol li {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.6;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}

/* ========================
   CONTAINER + WRAPPERS
========================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* ====================
   HEADER / NAV / LOGO
====================== */
header {
  background: var(--color-primary);
  color: var(--color-white);
  border-bottom: 4px solid var(--color-accent);
  box-shadow: 0 4px 24px rgba(62,49,27,0.04);
  position: sticky;
  top: 0; left:0; right:0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo img {
  height: 44px;
  width: auto;
  display: inline-block;
  filter: sepia(0.09) contrast(1.08) brightness(1.07);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--color-white);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.22s, background 0.22s;
}
.main-nav a.active, .main-nav a:focus, .main-nav a:hover {
  color: var(--color-accent);
  background: rgba(249,178,51,0.15);
}
.cta.primary {
  background: var(--color-accent);
  color: #232017;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  padding: 8px 28px;
  margin-left: 20px;
  letter-spacing: .09em;
  text-transform: uppercase;
  box-shadow: var(--shadow-btn);
  border: 2px solid #dbad54;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
}
.cta.primary:hover, .cta.primary:focus {
  background: #ffd87f;
  color: #194A6D;
  box-shadow: 0 4px 24px #ffc21455;
}

/* =============
   MOBILE NAV
=============== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #232017;
  border-radius: 50%;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px #efdfbc8c;
  transition: background 0.2s;
  z-index: 130;
  border: none;
}
.mobile-menu-toggle:active {
  background: #ffd87f;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(123deg, #fffbe6 70%, #e3dac9 100%);
  box-shadow: 0 10px 54px #00000029;
  z-index: 120;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .37s cubic-bezier(.42,1.18,.64,1), opacity .24s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 24px 0 0;
  background: none;
  font-size: 2rem;
  color: #513b16;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  line-height: 1;
  border-radius: 50%;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ece3c7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 28px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  color: #33301f;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-md);
  padding: 10px 18px 10px 6px;
  background: transparent;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ffeccd;
  color: var(--color-primary);
}
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
  .cta.primary {
    display: inline-block;
  }
}

/* =============
   HERO SECTIONS
=============== */
.hero, .tips-hero, .guide-hero, .faq-hero, .contact-hero, .testimonials-hero, .confirmation {
  background: linear-gradient(109deg, #f9ecd6 60%, #d3ccc0 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 3px 24px #d4c5a31a;
}
.hero h1, .tips-hero h1, .guide-hero h1, .faq-hero h1, .contact-hero h1, .testimonials-hero h1, .confirmation h1 {
  color: var(--color-primary);
  text-shadow: 2px 2px 0 #ffe7bc;
  font-size: 2.5rem;
}
.hero .cta.primary, .guide-hero .cta, .contact-hero .cta.primary, .contact-cta .cta.primary, .guide-cta .cta.primary, .cta-banner .cta.primary {
  margin-top: 12px;
}

/* ====== LISTS/ICONS ======= */
.features ul, .guide-hero ul, .steps ul, .practical-tips ul, .faq-content ul, .resources ul,
ul, ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
  margin-left: 0; padding-left: 0;
}
.features ul li, .guide ul li, .steps ul li, .practical-tips ul li, .resources ul li, .faq-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fdf8ed;
  border-radius: var(--radius-md);
  padding: 14px 14px 14px 12px;
  margin-bottom: 0 !important;
  box-shadow: 0 1.5px 12px #f4e2c0a3;
  border: 1.5px solid #ecd8af;
  font-size: 1.06rem;
}
.features ul li img, .guide ul li img, .practical-tips ul li img, .faq-content ul li img, .resources ul li img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* OL: Keep retro counter style */
ol {
  list-style-type: decimal-leading-zero;
  padding-left: 24px;
  margin-left: 0;
}
ol li::marker {
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1em;
}

/* =================
   CARDS & TESTIMONIALS
===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  max-width: 360px;
  border: 2px solid #ecd8b8;
  transition: transform 0.17s, box-shadow 0.17s;
}
.card:hover {
  transform: translateY(-4px) scale(1.025) rotate(-0.4deg);
  box-shadow: 0 8px 30px #a88c5b29;
  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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff9ee;
  box-shadow: 0 4px 22px #efd7a990;
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
  border-left: 6px solid var(--color-accent);
  border-top: 2px dashed #e2c48a;
  color: #2e281a;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-width: 250px;
}
.testimonial-card p {
  line-height: 1.7;
  font-size: 1.07rem;
  color: #514b38;
  margin-bottom: 8px !important;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #8e8766;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  align-self: flex-end;
}
.testimonial-card .stars {
  display: flex;
  align-items: center;
  gap: 2.5px;
}
.testimonial-card .stars img {
  width: 19px;
  filter: sepia(0.18) brightness(1.04) drop-shadow(0 1px 0 #e2b353);
}

/* Applied retro border effect for testimonials */
.testimonials-preview .testimonial-card,
.testimonials-experience .testimonial-card {
  border-radius: 20px 47px 17px 34px/30px 26px 40px 27px;
  border: 2.7px solid #ebcc92;
  border-left-width: 7px;
}

/* ===== FEATURED ELEMENTS ===== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPECIAL BANNERS */
.cta-banner {
  background: #FFE8B2;
  border-radius: var(--radius-md);
  padding: 28px 14px;
  margin: 30px 0 0 0;
  box-shadow: 0 2px 12px #d4b78833;
}

.guide-cta {
  background: #FAE9C0;
  border-radius: var(--radius-md);
  padding: 24px 14px;
  box-shadow: 0 6px 24px #d3be9850;
}
.contact-cta, .contact-form-section {
  background: #fff7e0;
  border-radius: var(--radius-md);
  box-shadow: 0 1.5px 11px #e9d7b238;
}

/* =================
   FAQ ACCORDION
=================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #fff8eb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1.5px solid #eadca9;
  padding: 18px 18px 14px 21px;
}
.faq-accordion h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-primary);
  margin-bottom: 6px;
  font-size: 1.15rem;
}
.faq-accordion p {
  font-size: 1rem;
  color: #575449;
}

.contact-support-cta {
  display: flex;
  flex-direction: column;
  background: #f7edcc;
  border-radius: var(--radius-md);
  padding: 22px;
  margin: 10px 0 0 0;
  gap: 8px;
}

.contact-support-cta p, .contact-support-cta a {
  color: var(--color-primary);
  font-weight: 700;
}

/* =================
   FOOTER
=================== */
footer {
  background: #fff9ed;
  border-top: 3.5px solid var(--color-primary);
  font-size: 1rem;
  color: #3d3a32;
  box-shadow: 0 -3px 18px #b3985a12;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 18px 0 2px 0;
}
.footer-nav a {
  color: var(--color-primary);
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 2px 10px;
  border-radius: 8px;
  transition: background 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #fae6b0;
}
.footer-contact {
  text-align: center;
  font-size: 0.99rem;
  color: #624c20;
  background: #fff5db;
  padding: 10px 0 10px 0;
  border-top: 1px dashed #e1cb8c;
  border-radius: 0 0 16px 16px;
}
.footer-contact span {
  font-weight: bold;
}

/* ===================
   BUTTONS / LINKS
==================== */
.cta, .cta.primary, .text-section a, .faq-content a {
  display: inline-block;
  background: #F9B233;
  color: #194A6D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1.06rem;
  border-radius: var(--radius-sm);
  padding: 8px 22px;
  margin: 4px 8px 4px 0;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 2px solid #e5b83d;
  box-shadow: var(--shadow-btn);
  transition: background 0.17s, color 0.17s, box-shadow 0.16s, border 0.15s;
}
.cta:hover, .cta:focus {
  background: #FFD87F;
  color: #232017;
  box-shadow: 0 8px 28px #cfa5421a;
  border-color: #f0c148;
}

button, .button {
  font-family: inherit;
  font-size: 1.06rem;
  border-radius: var(--radius-sm);
  padding: 7px 17px;
  cursor: pointer;
  background: #e4c589;
  color: #4d483a;
  border: 1.5px solid #cbb376;
  box-shadow: var(--shadow-btn);
  transition: background 0.14s, color 0.15s, border 0.15s;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #fbe9bc;
  color: #194A6D;
}

/* ================================
   COOKIE CONSENT BANNER & MODAL
================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #2C2225;
  color: #fffbe6;
  z-index: 2000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: center;
  padding: 22px 18px 22px 18px;
  box-shadow: 0 -8px 40px #15120d44;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  animation: cookieBannerIn 0.7s cubic-bezier(.8,1.3,.2,1) 1;
}
@keyframes cookieBannerIn {
  0% { opacity: 0; transform: translateY(64px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-consent-banner .cookie-btn {
  padding: 8px 20px;
  background: #F9B233;
  color: #232017;
  border-radius: 9px;
  border: 2px solid #dfaf3a;
  box-shadow: var(--shadow-btn);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, border 0.16s;
}
.cookie-consent-banner .cookie-btn:hover, .cookie-consent-banner .cookie-btn:focus {
  background: #ffe8ad;
  color: #194A6D;
}
.cookie-consent-banner .cookie-btn.reject {
  background: #e7dec9;
  color: #986100;
  border: 2px solid #bba786;
}
.cookie-consent-banner .cookie-btn.reject:hover, .cookie-consent-banner .cookie-btn.reject:focus {
  background: #faecbb;
  color: #594014;
}
.cookie-consent-banner .cookie-btn.settings {
  background: #fffbe6;
  color: #745011;
  border: 2px solid #e5b83d;
}
.cookie-consent-banner .cookie-btn.settings:hover, .cookie-consent-banner .cookie-btn.settings:focus {
  background: #ffe0a6;
  color: #194a6d;
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(44, 34, 37, 0.74);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  width: 96vw;
  max-width: 475px;
  background: #FFF8E6;
  border-radius: 25px;
  box-shadow: 0 9px 54px #66400019, 0 0 0 2.5px #f9b23333;
  padding: 34px 28px 32px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: cookieModalIn 0.23s cubic-bezier(.6,1,.24,1.14) 1;
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translateY(38px) scale(.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-weight: bold;
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 19px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #bfa96a;
  cursor: pointer;
  z-index: 3;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 19px;
  padding-bottom: 7px;
  border-bottom: 1px dashed #f9b23350;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1.05rem;
  color: #594010;
}
.cookie-toggle {
  width: 50px; height: 26px;
  border-radius: 20px;
  background: #e5c197;
  position: relative;
  cursor: pointer;
  transition: background 0.12s;
  margin-left: 16px;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 22px; height: 22px;
  background: #fff9eb;
  border-radius: 50%;
  box-shadow: 0 1.5px 5px #b7a07250;
  transition: left 0.16s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 26px;
  background: #F9B233;
}
.cookie-category.essential .cookie-toggle {
  background: #c2a276 !important;
  opacity: 0.7;
  pointer-events: none;
}
.cookie-category.essential label {
  font-weight: bold;
  color: #8e7d4a;
}
.cookie-modal .cookie-btns {
  display: flex;
  gap: 17px;
  justify-content: flex-end;
  margin-top: 6px;
}

/* ============
   LEGAL PAGES
============== */
.legal {
  background: #F6F2E6;
  border-radius: var(--radius-lg);
  padding: 38px 12px;
  margin-bottom: 60px;
  font-size: 1.08rem;
  box-shadow: 0 2px 12px #dacfb840;
}
.legal h1, .legal h2 {
  color: var(--color-primary);
}
.legal .text-section ul, .legal .text-section ol {
  margin-bottom: 16px;
  gap: 5px;
}
.legal .text-section ul li, .legal .text-section ol li {
  background: #fff8eb;
  border-radius: 10px;
  padding: 8px 13px;
  margin-bottom: 6px;
}

/* ================
   SECTION PATTERNS
================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===============
   RESPONSIVE CSS
================= */
@media (max-width: 1025px) {
  .container {
    max-width: 97vw;
    padding-left: 9px;
    padding-right: 9px;
  }
  .main-nav a,
  .footer-nav a {
    font-size: 0.99rem;
  }
  .card {
    max-width: 99vw;
  }
}
@media (max-width: 900px) {
  .content-grid, .card-container {
    gap: 16px;
  }
  .footer-nav, .footer-contact {
    font-size: 0.98rem;
  }
  .testimonial-card {
    padding: 14px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    padding: 0 2px;
    gap: 14px;
  }
  .section {
    margin-bottom: 38px;
    padding: 22px 6px;
  }
  h1 { font-size: 1.55rem !important; margin-bottom: 13px; }
  h2 { font-size: 1.25rem !important; margin-bottom: 10px; }
  h3 { font-size: 1.06rem !important; }
  .main-nav { display: none; }
  .hero, .tips-hero, .guide-hero, .faq-hero, .contact-hero, .testimonials-hero, .confirmation {
    padding: 21px 5px !important;
    border-radius: 0 0 17px 17px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 13px 8px;
    gap: 12px;
    min-width: unset;
  }
  .card {
    min-width: unset;
    max-width: unset;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    padding-top: 11px;
    padding-bottom: 2px;
  }
  .footer-contact {
    font-size: 0.97rem;
    padding: 7px 0;
  }
  .legal {
    padding: 21px 7px;
    font-size: 0.99rem;
  }
}

@media (max-width: 540px) {
  h1, h2 { text-align: left !important; }
  .footer-contact, .footer-nav { text-align: left; }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 8px 15px 12px;
    font-size: 0.98rem;
  }
  .cookie-consent-banner .cookie-btns {
    gap: 8px;
  }
  .cookie-modal-dialog {
    padding: 17px 9px 18px 13px;
    min-width: 0;
    width: 94vw;
  }
}

/* ===============
   MICRO-INTERACTIONS
=================== */
.card, .testimonial-card, .faq-accordion > div {
  transition: box-shadow .16s, transform .16s;
}
.card:hover, .testimonial-card:hover, .faq-accordion > div:hover {
  box-shadow: 0 8px 24px #a88c5b11, 0 2.5px 10px #c9bc8a11;
  transform: translateY(-2px) scale(1.014) rotate(-0.6deg);
}
.cta, .cta.primary, .button, button, .cookie-btn {
  transition: background .13s, color .15s, box-shadow .13s, border .13s;
}

/* ===============
   MISCELLANEOUS
================= */
::-webkit-scrollbar {
  width: 10px;
  background: #f8efd3;
}
::-webkit-scrollbar-thumb {
  background: #ebcf93;
  border-radius: 15px;
}

input[type='checkbox'], input[type='radio'] {
  accent-color: var(--color-accent);
}

/* Hide outline unless focused for a11y */
a, button, .cta, .cookie-btn, .main-nav a, .mobile-nav a, .cookie-modal-close {
  outline: none;
}
:focus-visible {
  outline: 2.5px dashed #f9b233;
  outline-offset: 2.5px;
}

/* =======
UTILITY
======= */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }

/* ==============
   END OF CSS
================ */
