/* =========================================================
   CSS RESET + BASELINE NORMALIZATION
========================================================= */
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, menu, 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, 
main, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  background: transparent;
  box-sizing: border-box;
}

html { 
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F6F6F0;
  color: #1c2736;
  font-family: 'Open Sans', Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}
img { display: block; max-width: 100%; height: auto; border: 0; }
a { color: inherit; text-decoration: none; transition: color .24s; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  border: none;
  background: none;
  outline: none;
  box-shadow: none;
  transition: background .18s, border-color .18s, color .18s;
}
:focus {
  outline: 2px solid #185289;
  outline-offset: 2px;
}

/* =========================================================
   VARIABLES (with fallback)
========================================================= */
:root {
  --brand-primary: #185289;
  --brand-primary-dark: #0A2740;
  --brand-accent: #F3B23A;
  --brand-bg: #F6F6F0;
  --brand-muted: #f2f3ea;
  --brand-muted2: #e3e6ec;
  --brand-card: #FFF;
  --brand-border: #e2e6ed;
  --brand-text: #222738;
  --brand-subtle-head: #465264;
  --brand-success: #24766c;
  --brand-danger: #ad4444;
  --btn-radius: 32px;
  --shadow-card: 0 2px 14px 0 rgba(34,40,65,0.07);
  --shadow-hover: 0 4px 28px 0 rgba(34,40,65,0.14);
  --header-height: 72px;
}

/* =========================================================
   TYPOGRAPHY (Elegant Classic)
========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, 'Times New Roman', serif;
  color: var(--brand-primary-dark);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 { font-size: 2.2rem; margin-bottom: 0.6em; }
h2 { font-size: 1.75rem; margin-bottom: 0.5em; }
h3 { font-size: 1.3rem; margin-bottom: 0.35em; }
h4 { font-size: 1.1rem; margin-bottom: 0.2em; }
h5, h6 { font-size: 1rem; margin-bottom: 0.15em; }
p, ul, ol { margin-bottom: 1em; font-size: 1rem; color: var(--brand-text); }
@media (min-width: 600px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2.0rem; }
  h3 { font-size: 1.5rem; }
}

b, strong { font-weight: 600; }
blockquote {
  font-style: italic;
  font-size: 1.07em;
  color: var(--brand-primary-dark);
  border-left: 4px solid var(--brand-accent);
  padding-left: 1em;
  margin: 0 0 0.7em 0;
  background: #fffaf2;
}

/* =========================================================
   GENERAL LAYOUTS
========================================================= */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

@media (min-width: 800px) {
  .content-wrapper { gap: 40px; }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 16px;
}

/* =========================================================
   HEADER & NAVIGATION
========================================================= */
header {
  background: var(--brand-card);
  box-shadow: 0 2px 8px 0 rgba(25,49,74,0.06);
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  min-height: 64px;
}

header a img {
  height: 38px;
}

.main-nav {
  display: none;
}
.main-nav a {
  font-family: 'Montserrat', Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
  margin-left: 24px;
  color: var(--brand-primary-dark);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: var(--brand-accent);
  transition: width 0.3s;
  margin-top: 3px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-primary);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 75%;
}

.cta-btn {
  font-family: 'Montserrat', Georgia, 'Times New Roman', serif;
  background: var(--brand-primary);
  color: #fff;
  border-radius: var(--btn-radius);
  font-size: 1.08rem;
  font-weight: 600;
  padding: 12px 32px;
  margin-left: 14px;
  letter-spacing: 0.03em;
  transition: background .23s, color .22s, box-shadow .22s;
  box-shadow: var(--shadow-card);
  display: inline-block;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-accent);
  color: var(--brand-primary-dark);
  box-shadow: var(--shadow-hover);
}

/* ============ Responsive Header & Nav ============= */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--brand-primary-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 8px;
  margin-left: 20px;
  border-radius: 50%;
  transition: background 0.15s;
  z-index: 34;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #f1f4fa;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(10,39,64,0.96);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.61,.13,.38,.87);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  margin: 36px 18px 12px auto;
  background: none;
  color: #fff;
  font-size: 2.4rem;
  border: none;
  display: block;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 50%;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(255,255,255,.10);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4em;
  width: 100%;
  margin-top: 30px;
  padding-left: 26px;
}
.mobile-nav a {
  display: block;
  padding: 12px 0 12px 0;
  color: #fff;
  font-size: 1.23rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  width: 90%;
  transition: background 0.16s, color 0.19s;
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary-dark);
}

@media (min-width: 1000px) {
  .main-nav { display: flex; align-items: center; gap: 12px; }
  .mobile-menu-toggle { display: none; }
}
@media (max-width: 999px) {
  .main-nav { display: none; }
}

/* ===========
  HERO / SECTION PATTERNS
============ */
.hero, .hero-contact, .faq-hero, .blog-hero, .thank-you {
  background: var(--brand-card);
  padding: 40px 0 30px 0;
  margin-bottom: 0;
}
.hero h1,
.hero-contact h1,
.blog-hero h1,
.faq-hero h1 {
  color: var(--brand-primary);
  font-size: 2rem;
  margin-bottom: 0.5em;
}
@media (min-width: 600px) {
  .hero h1,
  .hero-contact h1,
  .blog-hero h1,
  .faq-hero h1 { font-size: 2.7rem; }
}

/* ===========
  FLEXBOX UTILITY CLASSES (for all grid needs)
============ */
.feature-grid,
.card-container,
.card-grid,
.services-list,
.blog-list,
.blog-posts .featured-posts,
.footer-logo-nav,
.footer-contact,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.services-list, .blog-list, .featured-posts { gap: 20px; }
.service-grid { display: flex; flex-wrap: wrap; gap: 24px; }

/* CRITICAL: Custom for required class assignments */
.card-container { gap:24px; }
.card { margin-bottom:20px; position:relative; background:#fff; border-radius:16px; box-shadow:var(--shadow-card); padding:32px 22px; }
.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: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(27,40,66,0.09);
  margin-bottom: 20px;
  min-width: 0;
}
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

@media (max-width: 800px) {
  .feature-grid, .service-grid, .card-container, .footer-logo-nav { flex-direction: column; gap: 22px; }
  .content-grid { flex-direction: column; gap: 20px; }
  .text-image-section { flex-direction: column; gap: 22px; }
}

/* ===========
    FEATURES SECTION
============ */
.features {
  background: var(--brand-muted2);
  margin-bottom: 60px;
  padding: 40px 0;
}
.feature-grid {
  flex-wrap: wrap;
}
.feature {
  flex: 1 1 240px;
  min-width: 200px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 36px 22px 28px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.23s, transform 0.23s;
  margin-bottom: 20px;
  border: 1px solid var(--brand-border);
}
.feature img { height: 38px; margin-bottom: 12px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 0.2em; color: var(--brand-primary-dark); }
.feature p { font-size: 1rem; color: #3e485a; }
.feature:hover, .feature:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.024);
}

/* ===========
    SERVICES & CARDS
============ */
.services-preview, .services-grid {
  background: var(--brand-card);
}
.services-list {
  flex-direction: column;
  gap: 13px;
  margin: 20px 0;
}
.services-list li {
  font-size: 1.05rem;
  background: var(--brand-muted);
  padding: 19px 18px 17px 18px;
  border-radius: 12px;
  margin-bottom: 8px;
  color: #222738;
  box-shadow: 0 1px 2px rgba(21,54,97,0.03);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.services-list span {
  color: var(--brand-primary-dark);
  font-weight: bold;
}

.service-grid {
  gap: 28px;
  margin-top: 34px;
  margin-bottom: 20px;
}
.service-item {
  flex-basis: 280px;
  flex-grow: 1;
  background: var(--brand-muted);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 32px 22px 26px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 210px;
  border: 1px solid var(--brand-border);
}
.service-item h3 { font-size: 1.1rem; color: var(--brand-primary-dark); margin-bottom: 0.3em; }
.service-item p { color: #445264; font-size: 0.99rem; }
.service-price {
  margin-top: 8px;
  font-weight: 600;
  color: var(--brand-accent);
  font-size: 1.065rem;
}

/* ===========
    TESTIMONIALS SECTION
============ */
.testimonials {
  background: var(--brand-muted);
  margin-bottom: 60px;
  padding: 44px 0;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 36px 35px 28px 32px;
  color: #1f2937;
  min-width: 0px;
  position: relative;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.19s, border 0.18s;
  border: 1px solid var(--brand-border);
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-primary);
}
.testimonial-card blockquote {
  color: var(--brand-primary-dark);
  font-size: 1.09rem;
  background: #fbf8ef;
  border-left: 4px solid var(--brand-accent);
  margin-bottom: 0.5em;
}
.testimonial-meta {
  font-family: 'Montserrat', Georgia, 'Times New Roman', serif;
  color: #3e485a;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 7px;
}

/* ===========
  CTA FINAL
============ */
.cta-final, .cta {
  background: var(--brand-primary-dark);
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  border-radius: 18px;
  padding: 40px 16px 38px 16px;
}
.cta-final h2, .cta h2 {
  color: #fff;
}
.cta-final .cta-btn, .cta .cta-btn {
  background: var(--brand-accent);
  color: var(--brand-primary-dark);
  box-shadow: 0 2px 18px 0 rgba(184,132,32,0.13);
  margin-top: 20px;
}
.cta-final .cta-btn:hover, .cta .cta-btn:hover {
  background: #fff;
  color: var(--brand-primary);
}

/* =====================
    FAQ, BLOG, FORMS
===================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px 20px 14px 20px;
  color: #285269;
  box-shadow: 0 1px 6px 0 rgba(23,82,137,0.07);
  margin-bottom: 12px;
  border: 1px solid var(--brand-border);
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: var(--shadow-hover);
}
.blog-list, .featured-posts {
  gap: 16px;
  list-style: none;
  margin: 0 0 12px 0;
}
.blog-list li, .featured-posts li {
  background: var(--brand-muted);
  border-radius: 12px;
  padding: 24px 18px 20px 18px;
  margin-bottom: 12px;
  color: #1c2736;
  box-shadow: 0 1px 4px rgba(21,54,97,0.04);
}
.blog-list li h3 { margin-bottom: 0.2em; color: var(--brand-primary); font-size: 1.09rem; }
.featured-posts span { color: var(--brand-accent); font-weight: 700; margin-right: 10px; }
@media (min-width: 600px) {
  .blog-list li, .featured-posts li, .faq-item, .testimonial-card { font-size: 1.13rem; }
}

input[type="text"], input[type="email"] {
  border: 1px solid var(--brand-border);
  border-radius: 7px;
  font-size: 1rem;
  padding: 10px 13px;
  background: #fff;
  margin-top: 10px;
  transition: border 0.19s;
  width: 100%;
  max-width: 320px;
  margin-bottom: 14px;
}
input[type="text"]:focus, input[type="email"]:focus {
  border: 1.5px solid var(--brand-accent);
}
form button, .newsletter-btn {
  background: var(--brand-primary);
  color: #fff;
  border: none;
  padding: 10px 32px;
  border-radius:32px;
  font-weight:600;
  font-family: 'Montserrat', Georgia, 'Times New Roman', serif;
  font-size:1.06rem;
  margin-left: 10px;
  cursor:pointer;
  transition: background .23s, color .19s, box-shadow .21s;
  box-shadow: 0 2px 8px 0 rgba(25,49,74,.07);
}
form button:hover, .newsletter-btn:hover {
  background: var(--brand-accent);
  color: var(--brand-primary-dark);
  box-shadow: var(--shadow-hover);
}

label { font-size: 1rem; font-weight: 600; color: var(--brand-primary-dark); display:block; margin-bottom: .38em }

/* ==============
  FOOTER
=============== */
footer {
  background: var(--brand-primary-dark);
  color: #fff;
  padding: 48px 0 15px 0;
  margin-top: 32px;
}
footer .container { flex-direction: column; gap: 30px; }
.footer-logo-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  padding-bottom: 14px;
  margin-bottom:18px;
}
.footer-logo-nav img { height: 32px; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Georgia, 'Times New Roman', serif;
  font-size: 1.01rem;
  font-weight: 500;
  opacity: 0.93;
  padding: 4px 0;
  transition: color 0.19s, opacity 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-accent);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #eee;
  font-size: 0.99rem;
}
.footer-contact img { height: 16px; width: 16px; margin-right: 6px; vertical-align: text-bottom; }
.footer-social { display: flex; gap: 18px; align-items: center; margin: 12px 0 0 0; }
.footer-social a { display: inline-block; }
.footer-social img { height: 21px; filter: brightness(1.2); }
.footer-copy {
  font-size: 0.95rem;
  color: #d8dde2;
  margin: 0.95em 0 0 0;
  padding-bottom: 4px;
  text-align: left;
}
@media (max-width: 800px) {
  .footer-logo-nav, .footer-nav, .footer-contact, .footer-social { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ===========================
  COOKIE CONSENT BANNER
=========================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11000;
  background: #fff;
  box-shadow: 0 -2px 16px 0 rgba(23,82,137,0.12);
  border-top: 2px solid var(--brand-primary);
  padding: 22px 14px 14px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  transition: transform 0.38s cubic-bezier(.61,.13,.38,.87);
}
.cookie-banner.hide {
  transform: translateY(130%);
  transition: transform 0.5s;
}
.cookie-banner__text {
  font-size: 1rem;
  color: #1c2736;
  flex: 1 1 auto;
  min-width: 160px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: 14px;
}
.cookie-banner button {
  background: var(--brand-primary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border-radius: 24px;
  padding: 8px 24px;
  border: none;
  font-weight: 600;
  transition: background 0.24s, color 0.15s, box-shadow .17s;
  cursor: pointer;
  margin-right: 2px;
  box-shadow: 0 1px 6px rgba(23,82,137,0.08);
}
.cookie-banner button:hover,.cookie-banner button:focus {
  background: var(--brand-accent);
  color: var(--brand-primary-dark);
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: var(--brand-primary-dark);
  border: 1.5px solid var(--brand-primary-dark);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--brand-primary-dark);
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap:18px; }
  .cookie-banner__actions { margin-left: 0; gap: 12px; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 14000;
  inset: 0;
  background: rgba(18,52,83,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinModal .21s ease;
}
@keyframes fadeinModal { from {opacity:0;} to {opacity:1;} }
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px 0 rgba(27,49,86,0.28);
  padding: 34px 26px 26px 26px;
  min-width: 310px;
  max-width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalPopIn .21s;
}
@keyframes modalPopIn { from {transform:scale(0.97); opacity:.2;} to {transform:scale(1); opacity:1;} }
.cookie-modal h2 {
  font-size: 1.25rem;
  color: var(--brand-primary-dark);
  margin-bottom: 25px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 0;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--brand-muted2);
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--brand-primary-dark);
  font-weight: 600;
  min-width: 135px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--brand-primary);
  width: 1.2em;
  height: 1.2em;
}
.cookie-modal .cookie-category .category-desc {
  color: #425169;
  font-size: 0.99rem;
}
.cookie-modal .category-essential label { opacity: 0.66; }
.cookie-modal .modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  min-width: 132px;
}

/* ===============
   RESPONSIVENESS
================= */
@media (max-width: 450px) {
  h1 { font-size: 1.45rem !important; }
  h2 { font-size: 1.20rem !important; }
  .hero, .hero-contact, .faq-hero, .blog-hero, .thank-you {
    padding: 25px 0 16px 0;
  }
  .container { padding: 0 8px; }
}

/* ===============
   MISCELLANEOUS / ACCESSIBILITY
================= */
::-webkit-input-placeholder { color: #9da9b8 !important; opacity:1; }
:-ms-input-placeholder { color: #9da9b8 !important; opacity:1; }
::placeholder { color: #9da9b8 !important; opacity:1; }

section, .section { min-width: 0; }

ul, ol {
  padding-left: 1.1em;
  margin-bottom: 1.3em;
  line-height: 1.65;
}
ul li:not(:last-child), ol li:not(:last-child) { margin-bottom: 0.36em; }
li { font-size: 1rem; color: #27324a; }

/* Card shadow and hover for generic .card */
.card {
  box-shadow: var(--shadow-card);
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  padding: 26px 20px 20px 20px;
  background: #fff;
  transition: box-shadow 0.21s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.018);
}

/* Accessible hidden class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===============
    ELEGANT DETAILS
================= */
hr { border: 0; border-top: 1px solid var(--brand-muted2); margin: 40px 0; }
section:not(:last-child) { margin-bottom: 60px; }

/* Subtle animated underline on links */
a:not(.cta-btn):not(.cookie-settings):hover, a:not(.cta-btn):not(.cookie-settings):focus {
  color: var(--brand-accent);
  transition: color 0.2s;
}

/* ===================
   UTILITY FLEX CLASSES
=================== */
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

/* ===============
   PRINT & SELECTION
================= */
@media print {
  body { background: #fff; color: #000; }
  header, footer, .cookie-banner, .cookie-modal-backdrop { display: none !important; }
}
::selection { background: var(--brand-accent); color: #fff; }

/* End of CSS */
