/* ==== CSS RESET & BASE ==== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body { line-height: 1; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { border: 0; vertical-align: middle; }
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* ==== FONT IMPORTS (Vintage/Retro) ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Open+Sans:400,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Quicksand:700|Nunito+Sans:400,600&display=swap');

:root {
  --brand-primary: #21406e;
  --brand-secondary: #0e2433;
  --brand-accent: #f3f7fa;
  --retro-yellow: #ffe193;
  --retro-red: #e06c53;
  --retro-green: #6b8766;
  --retro-brown: #a1785e;
  --retro-blue: #5685a6;
  --white: #fff;
  --black: #171614;
  --font-display: 'Montserrat', 'Quicksand', Arial, sans-serif;
  --font-body: 'Open Sans', 'Nunito Sans', Arial, sans-serif;
  --shadow1: 0 2px 10px rgba(33,64,110,0.09),0 1.5px 5px rgba(161,120,94,0.08);
  --shadow2: 0 4px 24px rgba(33,64,110,0.16),0 1.5px 6px rgba(161,120,94,0.08);
  --border-radius: 18px;
  --border-radius-lg: 26px;
  --focus: #ffe193;
}

body {
  font-family: var(--font-body);
  color: var(--brand-secondary);
  background-color: var(--retro-yellow);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--brand-primary);
  letter-spacing: 0.03em;
  text-shadow: 1px 1px 0 var(--retro-yellow), 2px 2px 0 var(--retro-brown);
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 10px;
}
h4 { font-size: 1.05rem; }

p, ul, ol {
  font-family: var(--font-body);
  margin-bottom: 16px;
  color: var(--brand-secondary);
}
strong { font-weight: 700; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow1);
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section,
.map-embed {
  background: var(--retro-yellow);
  border-radius: var(--border-radius);
  padding: 22px 26px;
  box-shadow: var(--shadow1);
}

.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;
    gap: 20px;
  }
}

.features .feature-grid, .offers-teasers, .categories-grid, .latest-posts-list, .testimonial-slider, .faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.features .feature-grid li,
.categories-grid li, .latest-posts-list li, .offers-teasers .text-section {
  flex: 1 1 260px;
  min-width: 220px;
  background: var(--retro-yellow);
  border: 2px dashed var(--retro-brown);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  padding: 24px 20px;
  box-shadow: var(--shadow1);
  transition: transform 0.22s cubic-bezier(.86,-0.04,.62,1.08), box-shadow 0.2s;
}

.features .feature-grid li:hover,
.categories-grid li:hover, .offers-teasers .text-section:hover {
  transform: translateY(-2px) scale(1.017);
  box-shadow: var(--shadow2);
  border-color: var(--retro-red);
}

.cta-banner {
  background: var(--retro-red);
  color: var(--white);
  text-align: center;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow2);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-banner h2,
.cta-banner p { color: var(--white); text-shadow: none; }

.cta-banner .cta-btn {
  background: var(--brand-primary);
  color: var(--retro-yellow);
  border-radius: 99px;
  padding: 14px 36px;
  margin-top: 16px;
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: bold;
  box-shadow: 0px 4px 24px rgba(33,64,110,0.13);
  border: 2px solid var(--brand-primary);
  letter-spacing: 0.05em;
  outline: none;
  transition: background 0.16s, color 0.16s, box-shadow 0.2s, border 0.2s;
}
.cta-banner .cta-btn:hover, .cta-btn:focus {
  background: var(--retro-yellow);
  color: var(--brand-primary);
  border-color: var(--retro-yellow);
  box-shadow: var(--shadow2);
}

/* ==== NAVIGATION ==== */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brand-primary);
  padding: 16px 0;
  position: relative;
  border-radius: 0 0 20px 20px;
  box-shadow: 0px 6px 18px rgba(14,36,51,.08);
  font-family: var(--font-display);
  z-index: 50;
}
.logo img {
  height: 38px; width: auto;
  margin-right: 30px;
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-links a {
  color: var(--retro-yellow);
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover, .nav-links a:focus {
  background: var(--retro-yellow);
  color: var(--brand-primary);
}
.nav-links .primary-btn {
  background: var(--retro-red);
  color: var(--white);
  border-radius: 99px;
  padding: 8px 26px;
  font-size: 1.05rem;
  margin-left: 10px;
  border: 2px solid var(--retro-yellow);
  box-shadow: var(--shadow1);
  transition: background 0.15s, color 0.15s;
}
.nav-links .primary-btn:hover, .nav-links .primary-btn:focus {
  background: var(--retro-yellow);
  color: var(--retro-red);
  border-color: var(--retro-red);
}

.mobile-menu-toggle {
  display: none;
  color: var(--retro-yellow);
  background: var(--retro-red);
  border-radius: 10px;
  font-size: 28px;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border: 2px solid var(--retro-yellow);
  margin-left: 10px;
}
.mobile-menu-toggle:focus {
  outline: 3px solid var(--focus);
}

/* MOBILE NAV */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--retro-yellow);
  z-index: 999;
  padding: 34px 18px 20px 18px;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.86,-0.04,.62,1.08);
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: var(--retro-red);
  color: var(--white);
  border-radius: 50%;
  border: 2px solid var(--retro-brown);
  width: 42px; height: 42px;
  align-self: flex-end;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-yellow);
  color: var(--retro-red);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 18px;
}
.mobile-nav a {
  color: var(--brand-primary);
  font-weight: 800;
  font-size: 1.18rem;
  padding: 10px 0 10px 2px;
  border-bottom: 1.5px dashed var(--retro-blue);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-blue);
  color: var(--retro-yellow);
}

@media (max-width: 1024px) {
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .nav-links {
    gap: 14px;
  }
}
@media (max-width: 850px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  .main-nav {
    padding: 8px 0;
  }
  .logo img { height: 30px; }
}



/* ==== HERO SECTIONS ==== */
.hero {
  background: linear-gradient(105deg, var(--retro-yellow) 60%, var(--retro-blue) 100%);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow2);
  padding-bottom: 44px;
  margin-bottom: 46px;
}
.hero h1 {
  font-size: 2.9rem;
  color: var(--retro-red);
  text-shadow: 2px 2px 0 var(--retro-yellow), 2px 2px 0 var(--brand-secondary);
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.16rem;
  color: var(--brand-secondary);
  margin-bottom: 22px;
}
/* Search bar/forms in hero */
.search-form, .search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 9px;
}
.search-form input, .search-bar input {
  padding: 12px 18px;
  font-size: 1rem;
  border: 2px solid var(--retro-brown);
  border-radius: 12px 0 0 12px;
  background: var(--white);
  margin-right: 0;
  flex: 1 1 180px;
}
.search-form button, .search-bar button {
  background: var(--retro-brown);
  color: var(--retro-yellow);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0 12px 12px 0;
  padding: 12px 28px;
  cursor: pointer;
  outline: none;
  border: none;
  transition: background 0.14s, color 0.13s;
}
.search-form button:hover, .search-bar button:hover {
  background: var(--retro-yellow);
  color: var(--retro-brown);
  border: 2px solid var(--retro-brown);
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }
  .search-form input, .search-bar input {
    border-radius: 12px;
    flex: 1 1 100%;
  }
  .search-form button, .search-bar button {
    border-radius: 12px;
    margin-top: 6px;
  }
}


/* ==== OFFER LIST, CARDS, GRIDS ==== */
.offers-list .offers-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.offers-list .text-section {
  flex: 1 1 270px;
  min-width: 220px;
  margin-bottom: 20px;
  background: var(--white);
  border: 2px solid var(--retro-blue);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow1);
  transition: border 0.25s, box-shadow 0.2s;
}
.offers-list .text-section:hover {
  box-shadow: var(--shadow2);
  border-color: var(--retro-red);
}

.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.categories-grid li {
  flex: 1 1 170px;
  background: var(--retro-green);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 14px;
  font-weight: 700;
  font-size: 1.03rem;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(33,64,110,0.07);
  transition: background 0.17s, color 0.17s, transform 0.14s;
}
.categories-grid li:hover {
  background: var(--retro-yellow);
  color: var(--retro-green);
  transform: scale(1.04);
}

.latest-posts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.latest-posts-list li {
  background: var(--retro-blue);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 13px 14px;
  font-size: 1.01rem;
  box-shadow: 0 2px 8px rgba(86,133,166,0.13);
  margin-bottom: 20px;
  transition: background 0.17s, color 0.17s;
}
.latest-posts-list li:hover {
  background: var(--retro-yellow);
  color: var(--retro-blue);
}

.pagination {
  display: flex;
  gap: 10px;
  margin-top: 11px;
  font-weight: 700;
}
.pagination span, .pagination a {
  background: var(--white);
  border-radius: 7px;
  padding: 4px 13px;
  border: 2px solid var(--retro-yellow);
  color: var(--brand-primary);
  margin-bottom: 5px;
  font-size: 1rem;
  transition: background 0.13s, color 0.13s, border 0.13s;
}
.pagination a:hover {
  background: var(--retro-yellow);
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}


/* ==== FAQ ACCORDION (STATIC) ==== */
.faq-accordion h3 {
  margin: 22px 0 5px 0;
  color: var(--retro-brown);
}
.faq-accordion p {
  margin-bottom: 14px;
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow2);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 250px;
  flex: 1 1 260px;
  background: var(--retro-yellow);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 22px rgba(33,64,110,0.13);
  margin-bottom: 20px;
  border: 2px solid var(--retro-green);
  font-size: 1.09rem;
  color: var(--brand-secondary)!important;
  transition: box-shadow 0.16s, border 0.13s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow2);
  border-color: var(--retro-red);
}
.testimonial-card p {
  font-style: italic; color: var(--brand-secondary);
}
.testimonial-card strong {
  color: var(--retro-brown);
  font-size: 1.13rem;
}


/* ==== FOOTER ==== */
footer {
  background: var(--brand-primary);
  margin-top: 70px;
  color: var(--retro-yellow);
  padding: 44px 0 0 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 32px rgba(33,64,110,0.13);
  font-family: var(--font-body);
}
footer .container { padding-bottom: 0; }
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.footer-brand img {
  width: 54px;
  border-radius: 12px;
  background: var(--retro-yellow);
  box-shadow: 0 2px 10px rgba(254,225,147,0.10);
}
.footer-contact {
  font-size: 1.05rem;
  color: var(--retro-yellow);
  line-height: 1.7;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact img {
  width: 16px; height: 16px; margin-right: 5px;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.quick-links a, .legal-links a {
  color: var(--retro-yellow);
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.17s;
}
.quick-links a:hover, .legal-links a:hover {
  color: var(--retro-red);
}
.footer-bottom {
  text-align: center;
  color: var(--retro-yellow);
  background: var(--retro-brown);
  padding: 16px 0 18px 0;
  border-radius: 0 0 20px 20px;
  font-size: 1.04rem;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* ==== COOKIE CONSENT ==== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: var(--retro-brown);
  color: var(--retro-yellow);
  font-size: 1.06rem;
  padding: 26px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 -4px 16px rgba(161,120,94,0.21);
  border-radius: 22px 22px 0 0;
  animation: cookie-in 0.55s cubic-bezier(.6,0,1,.99);
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 7px;
}
.cookie-btn, .cookie-settings-btn {
  background: var(--retro-yellow);
  color: var(--retro-brown);
  padding: 11px 20px;
  border-radius: 99px;
  font-weight: bold;
  border: 2px solid var(--retro-brown);
  font-family: var(--font-display);
  box-shadow: var(--shadow1);
  font-size: 1rem;
  margin-top: 0;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.14s;
}
.cookie-btn:hover, .cookie-settings-btn:hover, .cookie-btn:focus, .cookie-settings-btn:focus {
  background: var(--retro-red);
  color: var(--white);
  border: 2px solid var(--retro-red);
  box-shadow: var(--shadow2);
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  z-index: 2500;
  background: var(--white);
  color: var(--brand-secondary);
  transform: translate(-50%, -50%) scale(0.98);
  min-width: 320px; max-width: 97vw;
  border-radius: 22px;
  box-shadow: 0 10px 40px rgba(33,64,110,0.15),0 2.5px 20px rgba(161,120,94,0.10);
  padding: 35px 24px 26px 24px;
  display: none;
  flex-direction: column;
  gap: 20px;
  animation: modal-in 0.39s cubic-bezier(.57,.02,.34,1.06);
}
.cookie-modal.open { display: flex; }
.cookie-modal .cookie-modal-header {
  font-weight: bold;
  font-size: 1.34rem;
  margin-bottom: 12px;
  color: var(--brand-primary);
}
.cookie-modal .cookie-modal-close {
  position: absolute; top: 22px; right: 22px;
  font-size: 1.49rem;
  color: var(--retro-red);
  background: var(--retro-yellow);
  border-radius: 50%; border: 2px solid var(--retro-brown);
  width: 38px; height: 38px;
  text-align: center; cursor: pointer;
  transition: background 0.12s;
  font-family: inherit;
}
.cookie-modal .cookie-modal-close:hover {
  background: var(--retro-red);
  color: var(--white);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0 0 0;
}
.cookie-modal .cookie-category input[type=checkbox] {
  width: 22px; height: 22px;
  accent-color: var(--retro-red);
}
.cookie-category.essential label {
  color: var(--retro-red);
  font-weight: 900;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 16px;
  margin-top: 13px;
}
.cookie-modal .cookie-btn {
  background: var(--retro-red);
  color: var(--white);
  border: 2px solid var(--retro-red);
}
.cookie-modal .cookie-btn:hover {
  background: var(--retro-yellow);
  color: var(--retro-red);
}
@media (max-width: 600px) {
  .cookie-modal { min-width: 98vw; padding: 28px 6px 20px 6px; }
}

@keyframes cookie-in {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes modal-in {
  0% { opacity: 0; transform: translate(-50%,-56%) scale(0.92); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}


/* ==== BUTTONS & LINKS ==== */
.cta-btn, .primary-btn, a.button, button {
  background: var(--retro-red);
  color: var(--white);
  border-radius: 99px;
  padding: 12px 32px;
  margin: 8px 0 0 0;
  font-size: 1.09rem;
  font-family: var(--font-display);
  font-weight: bold;
  cursor: pointer;
  border: 2px solid var(--retro-red);
  box-shadow: var(--shadow1);
  letter-spacing: 0.05em;
  outline: none;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, border 0.16s;
  display: inline-block;
}
.cta-btn:hover, .primary-btn:hover, a.button:hover, button:hover, .cta-btn:focus, .primary-btn:focus {
  background: var(--retro-yellow);
  color: var(--retro-red);
  border-color: var(--retro-yellow);
  box-shadow: var(--shadow2);
}
a {
  transition: color 0.14s;
}
a:hover {
  color: var(--retro-red);
  text-decoration: underline;
}


/* ==== MISC RETRO/VINTAGE ELEMENTS ==== */
.support-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--retro-yellow);
  padding: 8px 13px;
  background: var(--retro-brown);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(161,120,94,0.12);
}
.support-info a {
  color: var(--retro-yellow);
  border-bottom: 1.5px dotted var(--retro-yellow);
  transition: color 0.13s, border-bottom 0.13s;
}
.support-info a:hover {
  color: var(--retro-red);
  border-bottom: 2px solid var(--retro-red);
}

ol {
  padding-left: 22px;
}
ul li, ol li {
  margin-bottom: 7px;
}

.timeline li, .comparison_chart ul li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 11px;
}
.timeline li img {
  width: 27px; min-width: 27px;
  margin-top: 2px;
}


/*************************
 * RESPONSIVE/MOBILE RULES
 *************************/
@media (max-width: 768px) {
  body { font-size: 15px; }
  h1 { font-size: 1.36rem; }
  h2 { font-size: 1.12rem; }
  .container { max-width: 97vw; }
  section { padding: 20px 7px; }
  .content-wrapper, .testimonial-slider, .offers-list .offers-teasers {
    gap: 16px;
  }
  .features .feature-grid, .categories-grid, .latest-posts-list {
    gap: 12px;
  }
  .hero { margin-bottom: 22px; }
  .search-form, .search-bar {
    flex-direction: column;
    gap: 7px;
  }
  .cta-banner {
    padding: 18px 5px;
    border-radius: 15px;
  }
  footer {
    padding: 28px 0 0 0;
    border-radius: 13px 13px 0 0;
  }
  .footer-brand img { width: 42px; }
}


/* === FORM & CONTACT SECTIONS === */
.form-section, .contact-form, .support-info, .privacy-statement {
  background: var(--retro-blue);
  color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow1);
  margin-bottom: 20px;
  padding: 24px 20px;
}
.form-section h2, .contact-form h2, .support-info h2 {
  color: var(--retro-yellow);
  margin-bottom: 16px;
}
.form-section ol li {
  color: var(--retro-yellow);
  margin-bottom: 7px;
}
.privacy-statement a {
  color: var(--retro-yellow);
  text-decoration: underline;
  border-bottom: 1.5px dotted var(--retro-yellow);
}
.help-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--white);
  margin-top: 7px;
}

/* ===== DOCUMENT SECTIONS (Policies, Rules, etc) ===== */
.document {
  background: var(--retro-yellow);
  border-radius: var(--border-radius);
  color: var(--brand-secondary);
  padding: 32px 20px 22px 20px;
  box-shadow: var(--shadow1);
  margin-bottom: 60px;
}
.document h1, .document h2 {
  color: var(--retro-brown);
}

/* ========== MICRO-ANIMATIONS ========== */
.card, .testimonials, .testimonial-card, .feature-grid li, .cta-btn, .primary-btn, .offers-list .text-section {
  transition: box-shadow 0.18s, border 0.18s, transform 0.16s, background 0.15s, color 0.15s;
}
.card:hover, .testimonial-card:hover, .feature-grid li:hover, .cta-btn:hover, .primary-btn:hover, .offers-list .text-section:hover {
  box-shadow: var(--shadow2);
  transform: translateY(-2px) scale(1.017);
}

/********************
 * CRITICAL GAPS
 ********************/
.card-container, .content-grid, .features .feature-grid, .testimonial-slider, .offers-list .offers-teasers, .categories-grid, .latest-posts-list {
  gap: 20px;
}
.card, .testimonial-card, .features .feature-grid li, .offers-list .text-section {
  margin-bottom: 20px;
}

/********************
 * UTILITY CLASSES
 ********************/
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* === Error/Success/Helper messages and micro-interactions === */
.success-msg {
  color: var(--retro-green);
  font-weight: 700;
  padding: 8px 0;
}
.error-msg {
  color: var(--retro-red);
  font-weight: 700;
  padding: 8px 0;
}

/*********************
 * PRINT/VINTAGE BOARD PATTERN
 *********************/
.section, section, .card, .testimonial-card, .features .feature-grid li {
  background-image: repeating-linear-gradient(135deg, transparent, transparent 22px, rgba(254,225,147,0.08) 23px, rgba(254,225,147,0.08) 26px), repeating-linear-gradient(-45deg, transparent, transparent 14px, rgba(161,120,94,0.048) 15px, rgba(161,120,94,0.048) 17px);
}

/********************
 * NO GRID!
 ********************/
/* Only Flexbox for layout; grid/column properties not included. */
