/* ===================================================
   CSS RESET & NORMALIZE (mobile-first, consistent box model)
==================================================== */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F8F8;
  color: #17354D;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 12px;
}
li {
  margin-bottom: 6px;
  font-size: 16px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: #17354D;
  transition: color .2s;
}
a:hover, a:focus {
  color: #F4B942;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
  color: #17354D;
  margin-bottom: 12px;
}
h1 { font-size: 2.4rem; line-height: 1.12; }
h2 { font-size: 1.8rem; line-height: 1.16; }
h3 { font-size: 1.2rem; line-height: 1.2; }
@media (min-width:600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.4rem; }
}
blockquote {
  border-left: 5px solid #F4B942;
  background: rgba(244,185,66,0.06);
  font-style: italic;
  margin: 20px 0 24px 0;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(23,53,77,0.06);
}

/* ===================================================
   LAYOUT CONTAINERS & UTILITY CLASSES (using Flexbox only)
==================================================== */
.container {
  max-width: 1140px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(23,53,77,0.06);
  padding: 26px 20px 28px 20px;
  transition: box-shadow .25s, transform .19s;
  min-width: 200px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px 0 rgba(244,185,66,0.21), 0 10px 24px 0 rgba(23,53,77,0.06);
  transform: translateY(-5px) scale(1.03) rotate(-2deg);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  filter: drop-shadow(1px 2px 0 #f4b94244);
}
.feature-grid h3 {
  color: #17354D;
  font-size: 1.16rem;
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  justify-content: space-between;
}
.benefit-grid > div {
  flex: 1 1 300px;
  background: #FFF5D6;
  border-radius: 20px;
  padding: 22px 18px;
  box-shadow: 0 2px 12px 0 rgba(244,185,66,0.09);
  margin-bottom: 0;
  min-width: 200px;
}

.feature-stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-stepper > div {
  flex: 1 1 215px;
  background: #D6FAF4;
  border-radius: 20px;
  padding: 24px 16px;
  box-shadow: 0 2px 10px 0 rgba(85,213,198,0.06);
  min-width: 180px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.feature-stepper > div h3 { color: #029694; }
.feature-stepper > div:nth-child(1) { background: #FEEBE0; }
.feature-stepper > div:nth-child(2) { background: #FFFAB2; }
.feature-stepper > div:nth-child(3) { background: #D6FAF4; }

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(23,53,77,0.09);
  padding: 22px 20px 28px 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Testimonials */
.testimonial-slider, .testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  min-width: 240px;
  box-shadow: 0 2px 14px 0 rgba(23,53,77,0.08);
  gap: 16px;
  margin-bottom: 20px;
  transition: box-shadow .24s, transform .17s;
  color: #17354D;
}
.testimonial-card strong {
  color: #F4B942;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.07em;
}
.testimonial-card p {
  font-size: 1rem;
  color: #1c2842;
}
.star-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 3px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 38px 0 rgba(244,185,66,0.18), 0 2px 12px 0 rgba(23,53,77,0.05);
  transform: scale(1.03) rotate(2deg);
}

/* Call To Action Section */
.section .btn-primary:last-child {
  margin-top: 24px;
  align-self: flex-start;
}

/* TEAM / About Us */
.team-photo-placeholder {
  background: #FFF5D6;
  border-radius: 100px;
  width: 130px; height: 130px;
  margin-top: 18px;
  margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 8px 0 rgba(244,185,66,0.08);
  overflow: hidden;
}
.team-photo-placeholder img {
  width: 90px; height: 90px;
}

/* ===================================================
   HEADER & MAIN NAVIGATION (desktop & mobile)
==================================================== */
header {
  background: #fff;
  box-shadow: 0 1px 14px 0 rgba(244,185,66,0.04);
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #17354D;
  font-size: 16px;
  padding: 7px 16px;
  border-radius: 7px;
  position: relative;
  transition: color .18s, background .14s;
}
header nav a:hover, header nav a:focus {
  background: #F4B942;
  color: #17354D;
}
header .btn-primary {
  margin-left: 10px;
}
header img {
  height: 50px;
  width: auto;
}

/* ================== MOBILE NAVIGATION =====*/
.mobile-menu-toggle {
  display: none;
  background: #FFF5D6;
  color: #17354D;
  border: none;
  border-radius: 10px;
  font-size: 30px;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .18s, color .16s, box-shadow .14s;
  box-shadow: 0 1px 8px 0 rgba(244,185,66,0.14);
  z-index: 60;
  position: absolute;
  right: 12px;
  top: 16px;
}

/* Hidden desktop nav on mobile */
@media (max-width: 900px) {
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 40px 0 #17354D09;
  transform: translateX(100%);
  transition: transform .44s cubic-bezier(.87,-0.01,.35,1.04);
  z-index: 120;
  display: flex;
  flex-direction: column;
  padding-top: 52px;
  padding-bottom: 28px;
  padding-left: 0;
  padding-right: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 22px;
  top: 17px;
  background: #F4B942;
  color: #17354D;
  font-size: 32px;
  border: none;
  border-radius: 8px;
  width: 48px; height:48px;
  cursor: pointer;
  box-shadow: 0 2px 14px 0 rgba(244,185,66,0.12);
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #17354D;
  color: #F4B942;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 24px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: #17354D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 21px;
  padding: 10px 18px;
  border-radius: 7px;
  transition: background .19s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFF5D6;
  color: #F4B942;
}

@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ================== BUTTONS & ANIMATIONS =================== */
.btn-primary {
  background: #F4B942;
  color: #17354D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.05rem;
  border: none;
  border-radius: 13px;
  padding: 14px 32px;
  box-shadow: 0 2px 14px 0 rgba(244,185,66,0.19);
  cursor: pointer;
  transition: background .19s, color .17s, transform .13s, box-shadow .18s;
  display: inline-block;
  margin-top: 14px;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.btn-primary:hover, .btn-primary:focus {
  background: #17354D;
  color: #F4B942;
  box-shadow: 0 7px 32px 0 #F4B94244;
  transform: scale(1.05) rotate(-1deg);
  outline: none;
}

.btn-secondary {
  background: #17354D;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  padding: 10px 28px;
  box-shadow: 0 1px 8px 0 #17354D22;
  cursor: pointer;
  transition: background .14s, color .20s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F4B942;
  color: #17354D;
}

/* ============ FORM / INPUTS ============= */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 9px;
  border: 1.5px solid #F4B942;
  padding: 12px 14px;
  font-size: 16px;
  margin-bottom: 12px;
  transition: border-color .19s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #17354D;
}

/* ========== FOOTER ========== */
footer {
  background: #17354D;
  color: #FFF;
  padding: 42px 0 22px 0;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -4px 16px 0 #17354D1A;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
footer nav a {
  color: #FFF5D6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  transition: color .15s, text-decoration .17s;
}
footer nav a:hover, footer nav a:focus {
  color: #F4B942;
  text-decoration: underline;
}
.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact-footer img {
  width: 65px; height: 65px;
  margin-bottom: 7px;
}
@media (min-width: 900px) {
  footer .container {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
  .contact-footer {
    align-items: flex-end;
    text-align: right;
  }
}

/* ===================================================
   HERO / LANDING SECTION DYNAMICS
==================================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section .container {
  display: flex;
  flex-direction: column;
}
section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
section h1, section h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}

/* Fun micro-interactions (floating accent doodles) */
.feature-grid > div::after {
  content: '';
  display: block;
  position: absolute;
  top: -18px;
  right: -18px;
  width: 54px;
  height: 54px;
  background: rgba(244,185,66,0.22);
  border-radius: 100px;
  z-index: 0;
  transition: opacity .27s;
  animation: accentBlob 2.2s infinite alternate ease-in-out;
}
@keyframes accentBlob {
  from { transform: scale(1) rotate(0deg); opacity: .4; }
  to { transform: scale(1.14) rotate(15deg); opacity: .7; }
}
.hero-img-blob {
  position: absolute;
  left: -25px;
  width: 80px; height: 80px;
  background: #FFF5D6;
  border-radius: 50% 49% 36% 51%/53% 49% 44% 47%;
  z-index: 1;
  opacity: .3;
  animation: accentBlob 2.5s infinite alternate-reverse cubic-bezier(.4,0,.2,1);
}

/* ===================== COOKIE CONSENT BANNER ================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #17354D;
  box-shadow: 0 -4px 24px 0 #17354D22;
  border-radius: 22px 22px 0 0;
  padding: 24px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  z-index: 2000;
  transition: transform .3s, opacity .3s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(130%);
}
.cookie-banner strong {
  color: #F4B942;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-banner-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 7px;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  font-size: 0.98rem;
  padding: 10px 22px;
}
.cookie-banner .btn-settings {
  background: #FFF5D6;
  color: #17354D;
  border: none;
  border-radius: 9px;
  padding: 10px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 6px;
  transition: background .16s, color .13s;
  cursor: pointer;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #17354D;
  color: #FFF5D6;
}

/* Cookie modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(23,53,77,.44);
  z-index: 2300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .28s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 36px 0 #17354D33;
  max-width: 410px;
  width: 96vw;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  z-index: 1001;
  animation: popUp .22s cubic-bezier(.6,-0.12,.31,1.11);
}
@keyframes popUp {
  from { transform: scale(0.92) translateY(44px); opacity: 0.1; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: #17354D;
  font-size: 1.24rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-switch {
  appearance: none;
  width: 38px; height: 22px;
  background: #FFF5D6;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background .21s;
  cursor: pointer;
}
.cookie-modal .cookie-switch:checked {
  background: #F4B942;
}
.cookie-modal .cookie-switch:before {
  content: '';
  display: block;
  width: 20px; height: 20px;
  border-radius: 11px;
  background: #fff;
  position: absolute;
  top: 1px; left: 1px;
  box-shadow: 0 1px 6px 0 #17354D11;
  transition: left .21s;
}
.cookie-modal .cookie-switch:checked:before {
  left: 17px;
}
.cookie-modal .cat-lock {
  font-size: 17px;
  margin-right: 7px;
  color: #7c6f4c;
}
.cookie-modal .btn-group {
  display: flex;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 13px; top: 13px;
  font-size: 19px;
  color: #F4B942;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal .modal-close:hover {
  color: #17354D;
}

/* ========= LIST STYLES ========== */
ul {
  list-style-type: disc;
  margin-bottom: 14px;
  padding-left: 1.5em;
}
.text-section ul, .content-wrapper ul {
  margin-bottom: 18px;
}
li {
  font-size: 16px;
  margin-bottom: 7px;
}

/* ========= CONTACT DETAILS BLOCK ========= */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.contact-details img {
  width: 20px; height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}
.contact-map {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #FFF5D6;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 1px 6px 0 #F4B94222;
  margin-bottom: 9px;
  margin-top: 6px;
}
.contact-map img {
  width: 44px; height: 44px;
}

/* =============== RESPONSIVE TABLET/DESKTOP RULES =============== */
@media (min-width: 600px) {
  .content-wrapper {
    padding-left: 18px;
    padding-right: 18px;
  }
  .feature-grid > div, .benefit-grid > div {
    min-width: 220px;
  }
  .testimonial-slider, .testimonial-carousel {
    gap: 30px;
  }
}
@media (min-width: 900px) {
  .feature-grid {
    gap: 32px;
  }
  .feature-stepper {
    gap: 38px;
  }
  .container {
    padding-left: 0;
    padding-right: 0;
  }
  .section {
    padding: 60px 0 60px 0;
  }
  section .container {
    flex-direction: row;
  }
}

@media (max-width: 900px) {
  .feature-grid > div,
  .benefit-grid > div,
  .feature-stepper > div {
    flex-basis: 100%;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .container, .section {
    padding-left: 5px;
    padding-right: 5px;
  }
  .feature-grid, .testimonial-slider, .testimonial-carousel {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .benefit-grid > div, .feature-stepper > div, .testimonial-card {
    min-width: 0;
    width: 100%;
    padding-left: 10px;
    padding-right:10px;
  }
  .section {
    padding: 20px 4px 24px 4px;
    margin-bottom: 36px;
  }
  .team-photo-placeholder {
    width: 86px; height: 86px;
  }
  .contact-map {
    padding: 10px 8px;
    gap: 10px;
  }
}

/* ========== ANIMATED SHADOWS, HOVER EFFECTS & PLAYFUL TYPOGRAPHY =========== */
.feature-grid > div, .benefit-grid > div, .feature-stepper > div {
  cursor: pointer;
  will-change: box-shadow, transform;
}
.feature-grid > div:hover h3,
.benefit-grid > div:hover h3,
.feature-stepper > div:hover h3,
.card:hover h3 {
  color: #F4B942;
  transition: color .15s;
}

.card {
  cursor: pointer;
  box-shadow: 0 1px 10px 0 #F4B94210;
  transition: box-shadow .18s, transform .22s;
}
.card:hover {
  box-shadow: 0 7px 38px 0 #F4B94226;
  background: #FFF5D6;
  transform: rotate(-1deg) scale(1.02);
}

/* playful font for accent */
h1, h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: -1.7px;
  text-shadow: 0 1px 0 #FFFAE1;
}
h1 {
  color: #F4B942;
  margin-bottom: 14px;
  text-shadow: 0 2px 0 #FFFAE1, 0 2px 8px #F4B94233;
}
h2 {
  color: #17354D;
  margin-bottom: 8px;
}

/* Animated underline for section headings */
h2::after {
  content: '';
  display: block;
  width: 54px;
  height: 6px;
  border-radius: 7px;
  background: #F4B942;
  margin-top: 4px;
  margin-bottom: 13px;
  opacity: 0.6;
  animation: playfulUnderline 1.2s infinite alternate cubic-bezier(.51,0,.49,1.01);
}
@keyframes playfulUnderline {
  from { width: 34px; opacity: 0.52; }
  to { width: 74px; opacity: 0.82; }
}

/* ============= EXPLICIT SPACING BETWEEN CARDS ============= */
.feature-grid > div, .benefit-grid > div, .feature-stepper > div, .card, .testimonial-card {
  margin-bottom: 20px;
}

/* ============= PLAYFUL DYNAMIC COLORS (EXTRA ACCENTS) ============= */
.accent-text {
  color: #F4B942 !important;
  font-weight: 900;
}
.bg-accent {
  background: #F4B942 !important;
  color: #17354D !important;
}
.bg-fun {
  background: #FFF5D6 !important;
  color: #17354D !important;
}
.bg-primary {
  background: #17354D !important;
  color: #FFF;
}
.bg-secondary {
  background: #F8F8F8 !important;
  color: #17354D;
}

/* ============= MISC ELEMENTS FOR FUN =============*/
.fun-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: .08;
  left: -34px; top: -20px;
  width: 80px; height: 64px;
  background: #F4B942;
  border-radius: 50%;
  filter: blur(6px);
  animation: accentBlob 2.6s infinite alternate cubic-bezier(.45,.2,.65,1);
}

/* ========== ACCESSIBILITY/FOCUS ========== */
a:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 3px solid #F4B94266;
  outline-offset: 1px;
}

/* ===== CUSTOM SCROLLBAR FOR BRAND VIBE ===== */
::-webkit-scrollbar { width: 10px; background: #FFF5D6; }
::-webkit-scrollbar-thumb {
  background: #F4B94299;
  border-radius: 10px;
}
/* For Mozilla */
body {
  scrollbar-face-color: #F4B94299;
  scrollbar-track-color: #FFF5D6;
}

/* =========== PRINT SAFETY ============ */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop { display: none !important; }
}
