/* ----- CSS RESET & BASE TYPOGRAPHY ----- */
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,
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;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background: #FFF8F3;
  color: #23323D;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
a {
  color: #144564;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7AE48;
  text-decoration: underline;
}

hr {
  border: none;
  border-top: 1px solid #EBEBE5;
  margin: 32px 0;
}

/* ----- BRAND COLOR VARIABLES (with fallbacks) ----- */
:root {
  --color-primary: #144564;
  --color-primary-alt: #184e72;
  --color-secondary: #FFFFFF;
  --color-bg: #FFF8F3;
  --color-accent: #F7AE48;
  --color-accent-shade: #ed9d1f;
  --color-text-title: #144564;
  --color-text-body: #23323D;
  --color-muted: #8c99a6;
  --color-shadow: rgba(245, 182, 87, 0.09);
}

/* ----- REUSABLE TYPE SCALES ----- */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.18;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 18px;
  line-height: 1.22;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-primary);
  line-height: 1.25;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-primary);
}
p, ul, ol, blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-body);
}
strong {
  font-weight: 700;
}
small, .small {
  font-size: 0.92rem;
  color: var(--color-muted);
}
blockquote {
  background: #fff7ed;
  border-left: 4px solid var(--color-accent);
  padding: 14px 22px;
  border-radius: 10px;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 12px;
}
blockquote span {
  display: block;
  margin-top: 10px;
  font-size: 0.94rem;
  color: var(--color-accent-shade);
  font-style: normal;
}

/* ----- LAYOUT CONTAINERS (FLEXBOX ONLY!) ----- */
.container {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--color-secondary);
  border-radius: 24px;
  padding: 40px 24px;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  margin-bottom: 0;
}

.text-section {
  background: #fff7ed;
  border-radius: 20px;
  padding: 36px 24px;
  box-shadow: 0 1px 12px 0 var(--color-shadow);
  margin-bottom: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--color-secondary);
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
  padding: 24px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.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: #fff7ed;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 var(--color-shadow);
  margin-bottom: 20px;
  flex-direction: column;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- Special content wrappers for structured cards/grids --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #ffeedd;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
  flex: 1 1 220px;
  min-width: 210px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 24px 0 rgba(247,174,72,0.17);
  transform: translateY(-3px) scale(1.02);
}

/***** Cards, Fact Pills, Tip Boxes *****/
.quick-facts {
  background: #fff3e0;
  border-radius: 14px;
  padding: 18px 16px;
  margin: 18px 0 12px 0;
  font-size: 1rem;
}
.tip-boxes {
  background: #fff3df;
  border-radius: 14px;
  padding: 18px 16px;
  margin: 18px 0 12px 0;
}
.benefit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 0 0;
}
.benefit-pills span {
  background: #ffe9c2;
  color: var(--color-primary);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.97rem;
  font-weight: 600;
}
.downloadable-checklist {
  background: #fff7ec;
  border-radius: 14px;
  padding: 20px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.faq-brief {
  background: #fff3e0;
  border-radius: 14px;
  padding: 19px 16px;
  margin-top: 10px;
  margin-bottom: 14px;
}

/***************** TABLES *****************/
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff8f3;
  border-radius: 11px;
  margin: 20px 0;
  box-shadow: 0 1px 6px 0 var(--color-shadow);
  overflow: hidden;
}
thead {
  background: #fce5be;
}
td, th {
  padding: 13px 9px;
  text-align: left;
  font-size: 1rem;
}
tr {
  border-bottom: 1px solid #f7f0e8;
}
caption {
  caption-side: top;
  font-size: 1.07rem;
  color: var(--color-primary);
  margin-bottom: 7px;
  font-weight: 700;
}

/***** BUTTONS & LINKS *****/
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  border-radius: 50px;
  padding: 13px 36px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 var(--color-shadow);
  transition: background 0.17s, color 0.2s, transform 0.15s, box-shadow 0.18s;
  text-align: center;
  margin: 10px 0 0 0;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px 0 var(--color-shadow);
}
.btn-secondary {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px 0 var(--color-shadow);
}

/* ----- NAVIGATION BAR & HEADER ----- */
header {
  background: var(--color-primary);
  color: var(--color-secondary);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1010;
  box-shadow: 0 3px 12px 0 rgba(44,60,92,0.05);
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  padding: 14px 16px;
}
.main-nav a {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.06rem;
  border-radius: 24px;
  padding: 9px 16px;
  transition: background 0.19s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: rgba(247,174,72,0.17);
  color: var(--color-accent);
  text-decoration: none;
}
.main-nav a.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
  margin-left: 18px;
}
.main-nav a.btn-primary:hover,
.main-nav a.btn-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 20px;
  vertical-align: middle;
}

/* ----- MOBILE NAVIGATION ----- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 14px;
  background: var(--color-accent);
  border: none;
  border-radius: 50%;
  font-size: 1.75rem;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 1040;
  box-shadow: 0 2px 10px 0 rgba(247,174,72,0.22);
  transition: background 0.19s, color 0.19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-secondary);
  box-shadow: 0 2px 18px 0 rgba(20, 69, 100, 0.25);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.85, 0.01, 0.35, 1.05), opacity 0.23s;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 28px 0 0;
  border: none;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  transition: background 0.19s, color 0.19s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 44px 0 0 38px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.29rem;
  font-weight: 600;
  padding: 15px 4px 15px 0;
  border-radius: 16px;
  transition: background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff7e7;
  color: var(--color-accent-shade);
  text-decoration: underline;
}

/* Hide desktop nav on mobile and show mobile toggle */
@media (max-width: 875px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 876px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ----- FOOTER ----- */
footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 38px 0 18px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  margin-top: 36px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--color-secondary);
  opacity: 0.81;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.16s, opacity 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
  opacity: 1;
}
.footer-contact {
  font-size: 1rem;
  margin: 0 auto;
  max-width: 350px;
  color: var(--color-secondary);
  opacity: 0.95;
  line-height: 1.65;
  text-align: center;
  background: transparent !important;
}
.footer-contact img {
  height: 17px;
  width: 17px;
  vertical-align: middle;
  margin-right: 5px;
  margin-left: 10px;
  border-radius: 0;
}
.footer-contact strong {
  font-weight: 700;
  font-size: 1.13rem;
  letter-spacing: 0.03em;
}
/* Extra margin at bottom for cookie banner on small screens */
@media (max-width: 768px) {
  footer { padding-bottom: 84px; }
}

/***** TESTIMONIALS / REVIEWS (HIGH CONTRAST) *****/
.testimonial-card {
  background: #fff7ed;
  color: var(--color-primary);
  box-shadow: 0 4px 24px 0 var(--color-shadow);
  border-radius: 16px;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 1.12rem;
}
.testimonial-card span {
  color: var(--color-muted);
  font-size: 1rem;
  margin-top: 4px;
  font-style: italic;
  display: block;
}

/***** FAQ ACCORDION (if JavaScript adds .open or .active, style accordingly) *****/
.faq-list > div {
  background: #fff7ec;
  border-radius: 13px;
  box-shadow: 0 2px 9px 0 var(--color-shadow);
  margin-bottom: 20px;
  padding: 18px 16px;
  transition: box-shadow 0.19s;
}
.faq-list > div:hover {
  box-shadow: 0 6px 24px 0 rgba(247,174,72,0.10);
}
.faq-list h3 {
  margin-bottom: 6px;
  font-size: 1.09rem;
  color: var(--color-primary);
}

/***** EXPERT QUOTES (Expert Tips page) *****/
.expert-quotes blockquote {
  margin-bottom: 18px;
  color: #144564;
  background: #fff7ed;
  font-style: italic;
}

/***** MODALS & ANIMATIONS *****/
@media (prefers-reduced-motion: no-preference) {
  .mobile-menu, .mobile-menu.open,
  .cookie-banner, .cookie-banner.open,
  .cookie-modal, .cookie-modal.open {
    transition: transform 0.34s cubic-bezier(0.82, 0.02, 0.2, 1.1), opacity 0.22s;
  }
}

/***** RESPONSIVENESS: MOBILE-FIRST OVERRIDES *****/
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding-left: 7px;
    padding-right: 7px;
  }
  .content-wrapper, .text-section {
    border-radius: 19px;
    padding: 24px 9px;
    gap: 19px;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 5px;
  }
  .feature-grid,
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div { min-width: 0; }
  .testimonial-card {
    padding: 15px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.35rem; }
  .content-wrapper, .text-section {
    padding: 11vw 4vw;
  }
  .footer-contact {
    font-size: 0.93rem;
  }
}

/***** COOKIE CONSENT BANNER (fixed bottom) *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff3e0;
  color: var(--color-primary);
  box-shadow: 0 -2px 12px 0 rgba(247,174,72,0.13);
  z-index: 2222;
  width: 100vw;
  padding: 22px 2vw 18px 2vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: center;
  border-radius: 22px 22px 0 0;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: transform 0.28s, opacity 0.16s;
  font-size: 1.01rem;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 1rem;
  color: var(--color-primary);
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 var(--color-shadow);
  transition: background 0.18s, color 0.18s;
  margin: 0;
}
.cookie-banner .accept-cookie {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner .accept-cookie:hover, .cookie-banner .accept-cookie:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.cookie-banner .reject-cookie {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.cookie-banner .reject-cookie:hover, .cookie-banner .reject-cookie:focus {
  background: #E55B5B;
  color: #fff;
}
.cookie-banner .settings-cookie {
  background: #ffd393;
  color: var(--color-primary);
  margin-right: 6px;
}
.cookie-banner .settings-cookie:hover {
  background: var(--color-accent-shade);
  color: var(--color-secondary);
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 11px;
    padding: 13px 3vw 11px 3vw;
    font-size: 0.96rem;
  }
  .cookie-banner .cookie-btns {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px;
  }
}

/* ----- COOKIE PREFERENCES MODAL (OVERLAY) ----- */
.cookie-modal {
  position: fixed;
  z-index: 2233;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,50,61,0.22);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.19s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal .modal-content {
  background: #fff8f3;
  border-radius: 23px 23px 0 0;
  box-shadow: 0 2px 30px 0 var(--color-shadow);
  padding: 37px 26px 30px 26px;
  max-width: 430px;
  width: 96vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalIn 0.34s cubic-bezier(0.77,0,0.175,1);
}
@keyframes cookieModalIn {
  from { transform: translateY(48px); opacity: 0.2; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal .modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.cookie-modal .modal-header h2 {
  font-size: 1.2rem;
  margin-bottom: 0;
}
.cookie-modal .modal-close {
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  font-size: 1.4rem;
  border-radius: 50%;
  padding: 7px 13px;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.cookie-modal .cookie-category {
  margin-bottom: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  font-size: 1.05rem;
  background: #fff3e9;
  border-radius: 13px;
  padding: 12px 14px;
}
.cookie-modal .category-label {
  font-weight: 600;
}
.cookie-modal .toggle-switch {
  display: flex;
  align-items: center;
  position: relative;
  width: 43px;
  height: 25px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  width: 42px; height: 23px;
  background: #ececec;
  border-radius: 16px;
  transition: background 0.2s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: var(--color-accent);
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  left: 3px;
  bottom: 3px;
  background: var(--color-primary);
  transition: transform 0.2s;
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(17px);
  background: var(--color-secondary);
}
.cookie-modal .cookie-category.essential .slider {
  background: #ffd393;
}
.cookie-modal .cookie-category.essential .slider:before {
  background: #b1a460;
}
.cookie-modal .modal-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions .btn-primary,
.cookie-modal .modal-actions .btn-secondary {
  margin: 0;
  font-size: 1.06rem;
  padding: 9px 24px;
}
@media (max-width: 480px) {
  .cookie-modal .modal-content {
    padding: 22px 6vw 18px 6vw;
  }
}

/***** MICRO-INTERACTIONS & SUBTLE EFFECTS *****/
.card,
.feature-grid > div,
.testimonial-card,
.faq-list > div {
  transition: box-shadow 0.22s, transform 0.14s;
}
.card:hover,
.feature-grid > div:hover,
.testimonial-card:hover {
  box-shadow: 0 4px 28px 0 rgba(247,174,72,0.2);
  transform: translateY(-4px) scale(1.012);
}
.btn-primary:active,
.btn-secondary:active {
  transform: scale(0.98);
}

/***** GENERAL UTILITY MARGINS & PADDING (8/16/24/32/60 spacing) *****/
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mt-8 { margin-top: 8px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-24 { margin-top: 24px !important; }

/***** OVERRIDES FOR FORBIDDEN LAYOUTS (ENFORCE FLEX) *****/
[class*='grid'], [class*='container'], [class*='section'], [class*='card'] {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/***** PRINT OVERRIDES (optional) *****/
@media print {
  header, .main-nav, .mobile-menu, .cookie-banner, .cookie-modal, footer {
    display: none !important;
  }
  main, body, html {
    background: #fff;
    color: #000;
  }
}

/* --------- END STYLE.CSS (Glade Traversal) --------- */
