/* =====================
   CSS RESET & BASELINE
   ===================== */
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;
}
body {
  line-height: 1.6;
  background: #F7F7F5;
  color: #222846;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
fallback-html, fallback-body { background: white; color: #111; }

/*
=========================
FONTS & BASE TYPOGRAPHY
========================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F7F7F5;
  color: #232323;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
  color: #234179;
}
h1 { font-size: 2.5rem;  margin-bottom: 24px; }
h2 { font-size: 2rem;    margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 8px;  }
h4 { font-size: 1.1rem;  margin-bottom: 4px; }
p, ul, ol, li { font-family: 'Roboto', Arial, sans-serif; font-size: 1rem; }
strong, b { font-weight: 700; }
a { color: #EAA22F; text-decoration: none; transition: color .22s; }
a:hover, a:focus { color: #234179; text-decoration: underline; }
ul, ol { margin-left: 24px; margin-bottom: 16px; }

/* =====================
   CONTAINER SYSTEM
   ===================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  background: #fff8ec;
  border-radius: 26px;
  box-shadow: 0 2px 16px rgba(234,162,47,0.10);
  padding: 36px 28px;
}

@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .section { padding: 28px 6px; margin-bottom: 40px; }
  .content-wrapper, .text-section { gap: 18px; padding: 20px 8px; }
}

/* =====================================
   HEADER, NAVIGATION, LOGO & BURGER
   ===================================== */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(35,65,121,0.06);
  position: sticky;  top: 0; z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 70px;
}
.logo img {
  height: 48px; width: auto; display: block;
  filter: drop-shadow(0 3px 6px rgba(234,162,47,.13));
  margin-right: 12px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1 1 auto;
}
.main-nav a {
  color: #234179;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 10px;
  transition: background .17s, color .17s;
  position: relative;
}
.main-nav a:after {
  content: "";
  display: block;
  height: 3px;
  width: 0;
  background: #EAA22F;
  transition: width .26s cubic-bezier(.77,0,.18,1);
  border-radius: 2px;
  position: absolute;
  left: 10px; bottom: -3px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 70%;
}
.main-nav a:hover, .main-nav a:focus {
  background: #fff8ec;
  color: #EAA22F;
}

.cta-btn.primary {
  background: #EAA22F;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 13px;
  padding: 12px 30px;
  margin-left: 24px;
  box-shadow: 0 2px 12px rgba(234,162,47,0.08);
  border: none;
  cursor: pointer;
  transition: background .22s, box-shadow .22s, transform .11s;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #234179;
  color: #fff8ec;
  box-shadow: 0 4px 14px rgba(35,65,121,0.14);
  transform: translateY(-2px) scale(1.02);
}

button.mobile-menu-toggle {
  display: none;
  background: #EAA22F;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  padding: 6px 16px 6px 12px;
  cursor: pointer;
  margin-left: auto;
  box-shadow: 0 2px 8px rgba(234,162,47,0.05);
  transition: background .18s, color .18s;
  z-index: 2001;
}
button.mobile-menu-toggle:hover,button.mobile-menu-toggle:focus {
  background: #234179;
  color: #fff8ec;
}

@media (max-width:900px) {
  .main-nav { display: none; }
  .cta-btn.primary { display: none; }
  button.mobile-menu-toggle { display: block; }
}

/* ============
   MOBILE MENU
   ============ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(35,65,121, 0.97);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform .4s cubic-bezier(.68,-0.55,.27,1.55);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none; color: #fff;
  font-size: 2.1rem;
  border: none;
  padding: 16px 26px 8px 8px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff8ec;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 14px;
  transition: background .19s, color .19s;
  width: 95vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EAA22F;
  color: #234179;
}

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

/* ================================
   HERO SECTIONS, HEADERS & CTAs
   ================================ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width:768px) {
  section {
    margin-bottom: 40px;
    padding: 22px 4px;
  }
}
.hero, .content-wrapper > h1, section > .container > .content-wrapper > h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  color: #234179;
  margin-bottom: 18px;
  line-height: 1.13;
}
.hero p, .content-wrapper > p {
  font-size: 1.14rem;
  margin-bottom: 18px;
  color: #504333;
}

/* ========================
   FLEXBOX CARD SYSTEMS
   ======================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(35,65,121,0.10);
  padding: 28px 22px;
  transition: box-shadow .22s, transform .14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 36px rgba(234,162,47,0.14);
  transform: scale(1.018);
}

/* ===========
   FEATURES
   =========== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(234,162,47,0.08);
  min-width: 230px;
  flex: 1 1 250px; max-width: 330px;
  padding: 26px 20px 26px 26px;
  margin-bottom: 20px;
  transition: box-shadow .20s, transform .11s;
  position: relative;
}
.feature-item img {
  width: 41px; height: 41px;
  margin-bottom: 6px;
  margin-top: 3px;
}
.feature-item h3 {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #234179;
  font-weight: 700;
}
.feature-item p {
  font-size: 1rem;
  color: #555;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px rgba(35,65,121,0.14);
  transform: translateY(-3px) scale(1.032);
}

@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 18px 9px 20px 14px;
  }
}

/* ===========
   CARDS & BLOG
   =========== */
.blog-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.blog-article {
  background: #fff8ec;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(234,162,47,0.08);
  min-width: 230px; max-width: 360px; flex: 1 1 260px;
  padding: 20px 18px 16px 22px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .11s;
  position: relative;
}
.blog-article h3 { color: #234179; font-family: 'Montserrat'; font-size: 1.16rem; }
.blog-article p { margin-top: 7px; color: #3d3114; }
.blog-article:hover { box-shadow: 0 5px 22px rgba(234,162,47,0.13); transform: scale(1.018); }

@media (max-width: 740px) {
  .blog-list-grid {
    flex-direction: column;
    gap: 14px;
  }
  .blog-article {
    width: 100%; min-width: unset; max-width: 100%;
    padding: 15px 7px 14px 8px;
  }
}

/* ========================================
   FLEX UTILITIES (.content-grid, etc.)
   ======================================== */
.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, .content-grid { flex-direction: column; align-items: flex-start; }
}

/* ======================
   TESTIMONIALS & SLIDER
   ====================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #232323;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(35,65,121,0.07);
  max-width: 475px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .12s;
  min-width: 220px;
}
.testimonial-card p {
  font-size: 1.08rem;
  line-height: 1.6;
  color: #1a222c;
  text-align: center;
  font-style: italic;
}
.testimonial-card span {
  font-family: 'Montserrat';
  color: #EAA22F;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 28px rgba(234,162,47,0.13);
  transform: translateY(-2px) scale(1.024);
}

.rating-summary {
  margin: 20px 0 0 0;
  font-size: 1.1rem;
  color: #234179;
  text-align: center;
  font-family: 'Montserrat';
}
.rating-summary strong { color: #EAA22F; font-size: 1.2em; }

@media (max-width: 910px) {
  .testimonial-slider, .testimonial-card {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }
  .testimonial-slider { gap: 14px; }
}

/* =====================
   AWARDS/GALLERIES
   ===================== */
.cert-awards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.award-block {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(35,65,121,0.08);
  padding: 12px 32px 12px 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: 'Montserrat';
  font-size: 1.05rem;
  color: #234179;
}
.cert-awards img { width: 34px; height: 34px; }
@media (max-width: 570px) {
  .cert-awards {
    gap: 7px; flex-direction: column;
    align-items: flex-start;
  }
}

/* =====================
   FAQ/STEP GUIDE BLOCKS
   ===================== */
.faq-list, .step-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.faq-item, .step-item {
  background: #fff8ec;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(234,162,47,0.06);
  padding: 18px 16px 14px 20px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 220px; max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-item img {
  width: 38px; height: 38px; margin-bottom: 7px;
}
.faq-item h3, .step-item h3 { font-size: 1.1rem; font-family: 'Montserrat'; color: #234179; margin-bottom: 4px; }

@media (max-width: 780px) {
  .faq-list, .step-guide {
    flex-direction: column;
    gap: 13px;
  }
  .faq-item, .step-item { max-width: 100%; min-width: 0; }
}

/* =====================
   CONTACT/INFO ICONS
   ===================== */
.text-section img, .content-wrapper img {
  vertical-align: middle;
  margin-right: 6px;
  margin-left: 0;
  height: 1.1em;
  display: inline-block;
}

/* ================
   BUTTONS & LINKS
   ================ */
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: center;
  border: none;
  border-radius: 13px;
  padding: 12px 30px;
  margin: 16px 0 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  background: #234179;
  color: #fff8ec;
  transition: background .21s, color .17s, box-shadow .23s, transform .11s;
  box-shadow: 0 2px 14px rgba(35,65,121,0.10);
}
.cta-btn.primary {
  background: #EAA22F;
  color: #fff;
  box-shadow: 0 2px 22px rgba(234,162,47,0.13);
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #234179;
  color: #fff8ec;
}
.cta-btn:hover, .cta-btn:focus {
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 24px rgba(35,65,121,0.17);
}

/* ===============================
   FOOTER: MENU, BRAND, SOCIALS
   =============================== */
footer {
  background: #222846;
  color: #fff;
  padding: 40px 0 24px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  gap: 22px;
  flex: 1 1 auto;
  align-items: flex-start;
}
.footer-menu a {
  color: #fff8ec;
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 1rem;
  opacity: .92;
  transition: color .22s, opacity .18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #EAA22F;
  opacity: 1;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  min-width: 180px;
  font-size: 1rem;
  color: #fff8ec;
}
.footer-brand img {
  max-width: 48px; height: auto; margin: 0 0 10px 0;
  filter: drop-shadow(0 3px 20px #EAA22F22);
}
.footer-brand p  img { margin-right: 4px; }
.footer-social {
  display: flex;
  gap: 17px;
  align-items: center;
}
.footer-social a img {
  width: 36px; height: 36px; opacity: .85;
  transition: opacity .18s, transform .14s;
}
.footer-social a:hover img, .footer-social a:focus img {
  opacity: 1;
  transform: translateY(-2px) scale(1.09);
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .footer-menu { flex-wrap: wrap; gap: 12px; }
  .footer-brand { margin-bottom: 8px; }
}

/* ====================================
   COOKIE BANNER / CONSENT COMPONENT
   ==================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff8ec;
  color: #234179;
  box-shadow: 0 -2px 14px rgba(35,65,121,0.09);
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 24px 18px 20px;
  font-size: 1rem;
  font-family: 'Roboto';
  animation: banner-slideup .8s cubic-bezier(.85,-0.43,.11,1.56);
}
@keyframes banner-slideup {
  from { transform: translateY(100%); opacity: 0; }
  to {   transform: translateY(0);     opacity: 1; }
}
.cookie-consent-banner .cookie-message {
  flex: 1 1 auto;
  color: #234179;
  font-size: 1.03rem;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 22px;
  border-radius: 9px;
  border: none;
  background: #234179;
  color: #fff;
  font-family: 'Montserrat';
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background .19s, color .15s, box-shadow .15s, transform .1s;
  box-shadow: 0 2px 14px rgba(35,65,121,0.08);
}
.cookie-btn.cookie-accept {
  background: #EAA22F; color: #fff;
}
.cookie-btn.cookie-accept:hover, .cookie-btn.cookie-accept:focus {
  background: #234179; color: #fff8ec;
}
.cookie-btn.cookie-reject {
  background: #fff; border: 1.5px solid #EAA22F; color: #EAA22F;
}
.cookie-btn.cookie-reject:hover, .cookie-btn.cookie-reject:focus {
  background: #EAA22F; color: #fff;
}
.cookie-btn.cookie-settings {
  background: #234179; color: #fff8ec; border: none;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #EAA22F; color: #234179;
}
@media (max-width: 650px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 15px 9px 18px 12px;
    font-size: .98rem;
  }
  .cookie-consent-banner .cookie-actions { flex-direction: column; gap: 9px; }
}

/* ===============================
   COOKIE PREFERENCES MODAL
   =============================== */
.cookie-modal {
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(35,65,121,0.33);
  animation: modal-fadein .58s cubic-bezier(.7,.13,.37,1.38);
}
@keyframes modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-inner {
  background: #fff8ec;
  border-radius: 24px;
  box-shadow: 0 6px 44px rgba(35,65,121,0.32);
  width: 95vw; max-width: 420px;
  padding: 36px 26px 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-close {
  position: absolute; top: 18px; right: 14px;
  font-size: 1.55rem;
  border: none;
  background: none;
  color: #234179;
  cursor: pointer;
  transition: color .19s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #EAA22F;
}
.cookie-modal-inner h2 {
  margin-bottom: 8px;
  color: #234179; font-weight: 700;
  font-family: 'Montserrat'; font-size: 1.3rem;
}
.cookie-pref-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-pref-checkbox {
  width: 22px; height: 22px;
  accent-color: #EAA22F;
}
.cookie-pref-label {
  font-weight: 500;
  color: #234179;
}
.cookie-modal-inner .modal-btn-row {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 24px;
}
.cookie-modal-inner .cookie-btn { min-width: 110px; }
.cookie-pref-desc {
  color: #444;
  margin-top: 0; font-size: .97rem;
}

/* Essential cookies always enabled */
.cookie-pref-group.essential-label .cookie-pref-label {
  color: #b49f50;
  font-size: 1.01rem;
  font-style: italic;
}
.cookie-pref-group.essential-label .cookie-pref-checkbox {
  opacity: 0.6; pointer-events: none;
}

@media (max-width: 480px) {
  .cookie-modal-inner {
    padding: 14px 9px 9px 9px;
    gap: 12px;
  }
  .cookie-modal-inner .modal-btn-row {
    flex-direction: column;
    gap: 9px;
    justify-content: flex-start;
  }
}


/* ================
   MISC. UTILITIES
   ================ */
.categories {
  margin-top: 18px;
  font-size: .97rem;
  color: #b08728;
  font-family: 'Montserrat';
  opacity: .84;
}
.rating-summary { margin-top: 18px; }

/* ===============
   SPACINGS
   =============== */
.card-container, .feature-grid, .testimonial-slider, .content-grid, .faq-list, .step-guide, .cert-awards {
  gap: 24px;
}
.card, .feature-item, .testimonial-card, .faq-item, .step-item, .blog-article {
  margin-bottom: 20px;
}

/* ===============
   ANIMATIONS
   =============== */
.card, .feature-item, .testimonial-card, .blog-article, .faq-item, .step-item {
  transition: box-shadow .19s, transform .13s;
}

/* =====================
   CREATIVE/ARTISTIC EXTRAS
   ===================== */
/* Artistic effects (simple shapes, brush shadows for CTA) */
.cta-btn:after {
  content: '';
  display: inline-block;
  margin-left: 7px;
  width: 13px; height: 13px;
  background: #EAA22F;
  border-radius: 60% 35% 62% 38% / 55% 67% 40% 65%;
  opacity: .19;
  position: relative;
  top: 2px;
}
.cta-btn.primary:after {
  background: #fff8ec;
  opacity: .29;
}

/* Artistic underline for headings */
h2, h3 {
  position: relative;
}
h2:after, h3:after {
  content: '';
  position: absolute;
  left: 0; right: 90%; bottom: -7px;
  height: 6px;
  background: #EAA22F;
  border-radius: 3px;
  opacity: .33;
  width: 36px;
}

/* Fun decorations for accent highlight */
.feature-item:before {
  content: '';
  position: absolute;
  left: -9px; top: -9px;
  width: 36px; height: 36px;
  background: #EAA22F;
  opacity: 0.14;
  border-radius: 60% 36% 66% 34% / 50% 83% 35% 82%;
  z-index: 0;
  pointer-events: none;
}
.feature-item img, .card img, .award-block img {
  position: relative;
  z-index: 2;
}

/* Artistic font for display taglines */
.hero, h1, .display-tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .012em;
}

/* ===============
   MEDIA QUERIES
   =============== */
@media (max-width: 650px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.2rem; }
  .content-wrapper, .text-section { gap: 10px; }
  .cta-btn, .cta-btn.primary { font-size: .98rem; padding: 10px 16px; }
}

/* ========================
   A11Y: FOCUS OUTLINES
   ======================== */
*:focus-visible {
  outline: 2px dashed #EAA22F;
  outline-offset: 2px;
}

/* =========================
   PRINT FRIENDLY (Hidden)
   ========================= */
@media print {
  header, footer, .main-nav, .cta-btn, .mobile-menu, .cookie-consent-banner, .cookie-modal { display:none !important; }
}
