/* ====================================================================== */
/*                 VINTAGE RETRO + BRANDED ZELERALOP STYLE                */
/*            Modern, mobile-first, flexbox-only CSS (no grid!)           */
/* ====================================================================== */

/* ---------------- CSS RESET & NORMALIZE ------------------ */
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;
}

html {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #faf6ee;
}

body {
  color: #2f2214;
  line-height: 1.6;
  background-color: #f7f3ed;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  transition: all 0.14s cubic-bezier(.4,0,.2,1);
}

/* ---------------- CUSTOM FONT RETRO/VINTAGE ----------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&family=Archivo+Black&display=swap');

:root {
  --primary: #143157;
  --secondary: #fbecd8;
  --accent: #17A398;
  --dark: #2d1c11;
  --cream: #fbecd8;
  --brown: #7d5a4e;
  --retro-orange: #fa8b60;
  --retro-mustard: #dfb13f;
  --retro-green: #2b7463;
  --retro-blue: #6e81a6;
  --white: #fff;
  --shadow: 0 6px 32px -6px rgba(44,25,9,0.10);
  --card-radius: 14px;
  --section-space: 60px;
  --section-padding: 40px 20px;
  --max-width: 1200px;
}

/* ---------------- LAYOUT CONTAINERS ----------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 992px) {
  .container {
    padding: 0 32px;
  }
  .content-wrapper {
    gap: 42px;
  }
}

/* ---------------- TYPOGRAPHY ----------------- */
h1, .hero h1 {
  font-family: 'Archivo Black', 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 18px;
  line-height: 1.09;
  text-shadow: 0 2px 0 var(--cream), 0 4px 10px rgba(44,25,9,0.12);
}

h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--retro-orange);
  margin-bottom: 10px;
}
.section h2 {
  color: var(--primary);
}
p, li, blockquote, ul {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  font-weight: 700;
}
blockquote {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  padding-left: 18px;
  border-left: 3px solid var(--retro-mustard);
  color: var(--brown);
  background: rgba(251,236,216,.51);
}

/* VINTAGE DECORATIVE ACCENTS */
hr {
  border: none;
  border-top: 2px dashed var(--retro-mustard);
  margin: 32px 0;
}

/* ---------------- BUTTONS, LINKS ----------------- */
.cta-btn, .cta-link, .footer-links a, .main-nav a, .mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.cta-btn {
  background: var(--retro-orange);
  color: var(--primary);
  border-radius: 22px;
  padding: 12px 36px;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(44,25,9,0.12);
  transition: background 0.18s, color 0.18s, box-shadow 0.24s;
  border: 2px solid var(--brown);
  margin-top: 12px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--retro-mustard);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(234,191,47,0.14);
  outline: 2px solid var(--accent);
}

.cta-link {
  color: var(--retro-mustard);
  border-bottom: 2px dotted var(--retro-mustard);
  padding-bottom: 1px;
  margin-top: 8px;
  transition: color 0.16s, border 0.14s;
  display: inline-block;
}
.cta-link:hover, .cta-link:focus {
  color: var(--retro-orange);
  border-bottom: 2px solid var(--retro-orange);
  outline: 1px dashed var(--primary);
}

.main-nav a, .footer-links a, .mobile-nav a {
  color: var(--primary);
  font-size: 1.08rem;
  border-radius: 12px;
  padding: 7px 12px;
  margin: 0 3px;
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover, .main-nav a:focus,
.footer-links a:hover, .footer-links a:focus,
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-mustard);
  color: var(--dark);
  outline: 1px solid var(--retro-mustard);
}

.footer-links a {
  font-size: 1rem;
  color: var(--brown);
}

/* ---------------- HEADER & NAVIGATION ----------------- */
header {
  background: var(--cream);
  box-shadow: 0px 4px 24px -10px rgba(44,25,9,0.09);
  border-bottom: 2px solid var(--retro-mustard);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 18px;
  min-height: 68px;
}
.logo img {
  height: 44px;
  width: auto;
  margin-right: 20px;
  filter: sepia(.15) contrast(1.1);
}
.main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

@media (max-width: 1030px) {
  .main-nav {
    gap: 5px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: auto;
  }
}
.cta-btn {
  margin-left: 20px;
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--retro-mustard);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  margin-left: 8px;
  border: 2px solid var(--retro-mustard);
  z-index: 110;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-mustard);
  color: var(--primary);
  outline: 2px dashed var(--primary);
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* MOBILE MENU (OVERLAY HAMBURGER) */
.mobile-menu {
  position: fixed;
  left: 0;top: 0;right: 0;bottom: 0;
  background: linear-gradient(99deg,var(--cream) 92%, var(--retro-orange) 108%);
  z-index: 200;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(.62,.02,.26,1), opacity 0.19s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--primary);
  background: none;
  padding: 22px 28px 10px 18px;
  align-self: flex-end;
  border: none;
  z-index: 202;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--retro-orange);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 12px 46px 32px 28px;
  width: 100vw;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: var(--primary);
  padding: 13px 0;
  border-radius: 12px;
  border-bottom: 1px dashed var(--retro-mustard);
  width: 100%;
  margin-bottom: 3px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:last-child {
  margin-bottom: 0;
}
/* Hide main nav on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
}

/* ---------------- HERO SECTION ----------------- */
.hero {
  background: repeating-linear-gradient(135deg, var(--cream), var(--cream) 30px, #ede0c8 36px, #ede0c8 45px);
  border-bottom: 5px double var(--retro-mustard);
  padding: 36px 0 54px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
  display: flex;
}
.hero .content-wrapper {
  text-align: center;
  gap: 14px;
  justify-content: center;
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 12px;
  text-shadow: 0px 2px 0px #fff6cc, 0 6px 28px rgba(20,49,87,0.08);
}
.hero p {
  font-size: 1.14rem;
  color: #482a11;
  margin-bottom: 18px;
}
.hero .cta-btn {
  margin-top: 20px;
}

/* ----------------- VINTAGE PATTERNS ------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
}

/* ------------------- CARDS / FLEX PATTERNS ----------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--cream);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 24px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #dfb13f44;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: 0 10px 40px -10px var(--retro-orange);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* ---------------- FLEX GRIDS FOR CONTENT ----------------- */
.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;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}

.featured-reviews .review-tiles,
.team-grid, .feature-grid, .category-grid, .benefit-list, .highlight-tiles, .trend-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}

.featured-reviews .review-tile, .team-member, .feature-grid > div,.category-grid > div, .benefit-list > div, .highlight-tiles > div {
  flex: 1 1 260px;
  min-width: 200px;
  max-width: 360px;
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  border: 1.5px solid #f6dbc3;
  padding: 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: box-shadow 0.19s;
}
.featured-reviews .review-tile:hover, .team-member:hover,.feature-grid > div:hover, .benefit-list > div:hover, .highlight-tiles > div:hover {
  box-shadow: 0 12px 40px -10px #2d1c1140;
  border-color: var(--retro-mustard);
}

/* ----------------- FEATURES & FLEX LISTS ------------------ */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 24px;
}
.feature-grid > div {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.feature-grid img {
  width: 36px;
  height: 36px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----------------- TESTIMONIALS ------------------ */
.testimonials {
  background: repeating-linear-gradient(111deg, #fff7ea, #fff7ea 30px, #f7f3ed 36px, #f7f3ed 45px);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffefa;
  border-radius: 17px;
  border: 2px solid var(--retro-mustard);
  box-shadow: 0 6px 34px -8px #e1b04644;
  max-width: 330px;
  margin-bottom: 20px;
  color: #37231b;
  transition: box-shadow 0.15s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 48px -6px #dfb13f55;
  transform: translateY(-4px) scale(1.025);
}
.testimonial-card blockquote {
  background: rgba(255, 250, 221, 0.76);
  border-left: 3px solid var(--retro-mustard);
  padding: 10px 8px 10px 16px;
  color: #3a2b12;
  font-size: 1.03rem;
}
.testimonial-author {
  color: var(--retro-green);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.star-rating img {
  height: 23px;
  width: auto;
  display: inline-block;
  filter: sepia(.6) hue-rotate(-20deg) saturate(1.4);
}

/* ----------------- TABLES ------------------ */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fffdfa;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 1rem;
}
thead {
  background: var(--retro-mustard);
}
thead th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 13px 10px;
  color: var(--primary);
  background: var(--retro-mustard);
  border-bottom: 3px double #ddad2a;
}
tbody td {
  padding: 14px 8px;
  border-bottom: 1.5px dashed #f1d68e;
  color: #2f2214;
  background: #fffefa;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* ----------------- FAQ ACCORDION ------------------ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 18px;
}
.faq-item h3 {
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 6px;
  position: relative;
  transition: color 0.15s;
}
.faq-item h3:after {
  content: '▼';
  float: right;
  font-size: 1.05em;
  margin-left: 12px;
  color: var(--retro-mustard);
  transition: transform 0.23s;
}
.faq-item.open h3:after {
  transform: rotate(-180deg);
}
.faq-item p {
  display: none;
  padding-left: 8px;
  color: #412d13;
  font-size: 0.99rem;
}
.faq-item.open p {
  display: block;
  animation: fadeInFaq .33s;
}
@keyframes fadeInFaq {
  from { opacity:0; margin-top:-8px; }
  to { opacity:1; margin-top:0; }
}

/* ----------------- FOOTER ------------------ */
footer {
  background: var(--cream);
  box-shadow: 0px -4px 24px -10px #deb13f23;
  border-top: 2.5px solid var(--retro-mustard);
  padding: 0 0 6px 0;
  font-size: 0.98rem;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px 36px;
  padding: 40px 20px 18px 20px;
  margin-top: 26px;
}
.footer-brand {
  flex: 0 0 110px;
  min-width: 90px;
  margin-bottom: 18px;
}
.footer-brand img {
  width: 90px;
  height: auto;
  filter: sepia(.18);
}
.footer-links {
  flex: 2 1 450px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
}
.footer-contact {
  flex: 2 1 320px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact img {
  height: 18px;
  margin-right: 7px;
  filter: sepia(.25);
}
.footer-social {
  flex: 1 1 100px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.footer-social img {
  width: 32px; height: 32px; border-radius: 7px;
  box-shadow: 0 2px 8px #dec77f33;
  background: #f3e9cf;
  transition: box-shadow 0.13s, transform 0.15s;
}
.footer-social a:hover img, .footer-social a:focus img {
  box-shadow: 0 8px 14px -4px #efd94834;
  transform: scale(1.14) rotate(-8deg);
}
.footer-copyright {
  font-size: 0.95em;
  color: #a28881;
  margin-top: 18px;
  width: 100%;
}

@media (max-width: 860px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px 0;
  }
  .footer-brand, .footer-links, .footer-contact, .footer-social {
    flex: 1 1 100%;
  }
}
/* ------ RESPONSIVE LAYOUTS FOR FLEX GRIDS ------ */
@media (max-width: 1024px) {
  .card-container, .team-grid, .feature-grid, .category-grid, .benefit-list, .highlight-tiles, .review-tiles, .testimonial-slider {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section {
    padding: 27px 4vw;
  }
  .card-container, .team-grid, .feature-grid, .category-grid, .benefit-list, .highlight-tiles, .review-tiles, .testimonial-slider {
    flex-direction: column;
    gap: 12px;
  }
  .featured-reviews .review-tile, .team-member, .feature-grid > div,.category-grid > div, .benefit-list > div, .highlight-tiles > div {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin-bottom: 14px;
  }
}

@media (max-width: 660px) {
  h1, .hero h1 { font-size: 1.52rem; }
  h2 { font-size: 1.2rem; }
  .section { padding: 16px 0.5rem; }
  .testimonial-card { max-width: 98vw; padding: 13px 3vw; }
  .cta-btn { font-size: 0.98rem; padding: 11px 16px; }
}

/* ----------------- COOKIE CONSENT BANNER ----------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: var(--cream);
  color: #2c180C;
  padding: 16px 20px 22px 18px;
  box-shadow: 0 -4px 32px -7px #ddad2a33;
  border-top: 3px solid var(--retro-mustard);
  font-size: 1.05rem;
  z-index: 4000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  animation: slidebannerIn .7s;
}
@keyframes slidebannerIn {
  from { transform: translateY(130%); opacity: 0}
  to   { transform: translateY(0); opacity: 1}
}
.cookie-consent-banner p {
  flex: 1;
  color: #362c14;
}
.cookie-btn {
  background: var(--retro-mustard);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 13px;
  margin-left: 10px;
  box-shadow: 0 1px 6px #e1b04625;
  border: 1.5px solid var(--retro-mustard);
  transition: background 0.15s, color 0.16s;
  margin-right: 4px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--retro-orange);
  color: var(--primary);
  outline: 1px dashed var(--retro-green);
}
.cookie-settings-btn {
  background: #fff1d6;
  color: #64461a;
  border: 1px solid #e9c877;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--retro-blue);
  color: var(--white);
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  left:0; top:0; right:0; bottom:0;
  background: rgba(30,18,3,0.46);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: var(--cream);
  border-radius: 17px;
  box-shadow: 0 10px 50px -10px #744e1a33;
  max-width: 94vw;
  min-width: 288px;
  width: 390px;
  padding: 32px 24px 24px 24px;
  animation: cookieModalShow .4s;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
@keyframes cookieModalShow {
  from { opacity: 0; transform: scale(0.94) translateY(60px) }
  to   { opacity: 1; transform: scale(1) translateY(0) }
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: var(--primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 9px;
}
.cookie-toggle {
  margin-left: auto;
  accent-color: var(--retro-mustard);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}
.cookie-modal .cookie-btn {
  margin-top: 13px;
  width: 100%;
  border-radius: 18px;
  font-size: 1.07rem;
}

.cookie-modal-close {
  position: absolute;
  top:10px; right:12px;
  background: none;
  font-size: 1.8rem;
  color: var(--primary);
  border: none;
  cursor: pointer;
}
.cookie-modal-close:hover,.cookie-modal-close:focus {
  color: var(--retro-orange);
}

@media (max-width: 460px) {
  .cookie-modal {
    width: 99vw;
    min-width: 0;
    padding: 15px 4vw 15px 4vw;
  }
}

/* -------------- RESPONSIVE TABLES ON SMALL SCREENS -------------- */
@media (max-width: 650px) {
  .comparison-grid table, .comparison-grid thead, .comparison-grid tbody, .comparison-grid th, .comparison-grid td, .comparison-grid tr {
    display: block;
    width: 100%;
  }
  .comparison-grid th {
    background: var(--retro-mustard);
    color: var(--primary);
    padding: 12px 3vw;
  }
  .comparison-grid tr { margin-bottom: 14px; }
  .comparison-grid td {
    position: relative;
    padding-left: 46vw;
    border-bottom: 1px dashed #f1d68e;
    font-size: 1.04rem;
    min-height: 38px;
  }
  .comparison-grid td:before {
    position: absolute;
    left: 2vw;
    top: 0;
    width: 41vw;
    white-space: nowrap;
    font-weight: 600;
    font-family: 'Montserrat', Arial;
    color: var(--primary);
    content: attr(data-label);
  }
  .comparison-grid th, .comparison-grid td { display: block; }
}

/* ------------------ MISC SECTION / LAYOUT SPACING ------------------ */
.metrics-overview, .press-quotes, .support-info, .trust-section, .press-mentions, .core-values, .additional-support-info {
  margin-top: 22px;
  background: #fff9ec;
  border: 1px dashed var(--retro-mustard);
  border-radius: 13px;
  padding: 16px 19px;
  color: #412d13;
}
.metrics-overview ul, .core-values ul, .trust-section ul, .faq-accordion, .glossary-terms ul, .educational-articles ul, .trend-list ul {
  margin: 13px 0 0 0;
  padding: 0;
}
.metrics-overview li, .core-values li, .trust-section li, .glossary-terms li, .educational-articles li, .trend-list li, .faq-accordion li {
  padding-left: 23px;
  margin-bottom: 7px;
  background: url('data:image/svg+xml;utf8,<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><circle cx="7" cy="8" r="5" fill="%23dfb13f"/></svg>') no-repeat left 2px center/16px 16px;
  font-size: 1rem;
}
/* Remove bullet in trend-list if has icon already */
.trend-list li > img {
  margin-right: 8px;
  vertical-align: middle;
}

/* Remove extra margin for last items */
.metrics-overview li:last-child,
.core-values li:last-child,
.trust-section li:last-child,
.glossary-terms li:last-child,
.educational-articles li:last-child,
.trend-list li:last-child {
  margin-bottom: 0;
}

/* About us: media-logos */
.media-logos {
  display: flex;
  flex-direction: row;
  gap: 26px;
  margin-top: 10px;
  margin-bottom: 18px;
  filter: sepia(.13) contrast(1.18);
}
.media-logos img {
  height: 49px;
  width: auto;
}

/* Press quotes */
.press-quotes {
  margin-top: 14px;
}
.press-quotes blockquote {
  font-size: 1.07rem;
  color: #917c56;
}
.press-quotes blockquote:before {
  content: '❝'; color: #dfb13f; font-size: 2em; line-height:0; vertical-align:-18%; margin-right:7px;
}

/* ---------- SCROLLBAR STYLING FOR VINTAGE RETRO FEEL ---------- */
::-webkit-scrollbar { width: 13px; background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: var(--retro-mustard);
  border-radius: 13px;
  border: 3px solid var(--cream);
}
::-webkit-scrollbar-thumb:hover { background: var(--retro-orange); }

/* ------------ MISC DECORATIVE SHADOWS / HOVER MICROINTERACTIONS ------------ */
.card, .testimonial-card, .team-member, .feature-grid > div, .review-tile {
  transition: box-shadow 0.18s, transform 0.2s;
}
.card:hover, .testimonial-card:hover, .team-member:hover, .feature-grid > div:hover, .review-tile:hover {
  box-shadow: 0 14px 50px -10px #be531c35;
  transform: scale(1.024);
  border-color: var(--accent);
}

input, select, textarea {
  padding: 10px 13px;
  border-radius: 8px;
  border: 1.7px solid #e9c877;
  background: #fff9ec;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 14px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  outline: 2px dashed var(--accent);
}

/* -------------- PRINT OPTIMIZATION -------------- */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
  html, body { background: #fff; color: #111; }
}
