/* ==== 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;
}
body {
  line-height: 1.5;
  background: #F9F8F4;
  color: #2E2B26;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==== VINTAGE RETRO PALETTE & FONTS ==== */
:root {
  --primary: #24436B;
  --secondary: #FFF6E0;
  --accent: #D9823B;
  --retro-red: #BFA073;
  --retro-blue: #A7BECB;
  --retro-green: #20766E;
  --retro-border: #DAC9B0;
  --retro-yellow: #F5DD90;
  --retro-bg: #F9F8F4;
  --retro-brown: #604C35;
  --card-bg: #FFF6E9;
  --card-shadow: rgba(36, 67, 107, 0.07);
  --danger: #B23B2F;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:ital,wght@0,400;0,600;1,400&display=swap');

body {
  background: var(--retro-bg);
  color: var(--retro-brown);
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, .site-logo, .cta-btn {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
}
h1 {
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 20px;
}
h2 {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--retro-brown);
  font-family: 'Montserrat', Arial, sans-serif;
}
p, li, td, th {
  font-size: 1rem;
  color: var(--retro-brown);
  line-height: 1.6;
}
strong {
  font-weight: 600;
}

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-right: 18px;
  padding-left: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 4px 12px var(--card-shadow);
}
@media (max-width: 768px){
  .section {
    padding: 24px 8px;
    margin-bottom: 32px;
    border-radius: 14px;
  }
}

/* ==== HEADER AND NAVIGATION ==== */
header {
  background: var(--primary);
  color: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 8px 18px -6px var(--card-shadow);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}
.site-logo img {
  width: 55px;
  height: auto;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.site-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.02em;
  padding: 4px 12px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.site-nav a:hover, .site-nav a:focus {
  background: var(--accent);
  color: #fff;
  outline: none;
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 11px 34px;
  border-radius: 32px;
  transition: background 0.25s, transform 0.20s;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px var(--card-shadow);
  border: none;
  cursor: pointer;
  margin-left: 12px;
  text-shadow: 1px 1px 0 #BFA07322;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--retro-yellow);
  transform: translateY(-2px) scale(1.03);
}
.cta-btn-link {
  font-family: 'Montserrat', Arial, sans-serif;
  background: none;
  color: var(--accent);
  font-weight: bold;
  border: 2px solid var(--accent);
  border-radius: 22px;
  padding: 7px 24px;
  margin-top: 18px;
  display: inline-block;
  transition: color 0.22s, background 0.20s, border-color 0.2s;
}
.cta-btn-link:hover, .cta-btn-link:focus {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  z-index: 1101;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px var(--card-shadow);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--primary);
}
.mobile-menu {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--retro-bg);
  box-shadow: 2px 0 22px rgba(36,67,107,0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-120vw);
  transition: transform 0.38s cubic-bezier(0.78,0.21,0.2,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  margin: 18px 0 0 18px;
  background: var(--danger);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 47px;
  height: 47px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 1201;
  box-shadow: 0 2px 12px var(--card-shadow);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  padding-left: 30px;
  width: 80vw;
  min-width: 210px;
}
.mobile-nav a {
  font-size: 1.24rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 0 12px 6px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-yellow);
  color: var(--retro-brown);
}
@media (max-width: 992px) {
  .site-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 992px){
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==== MAIN TYPOGRAPHY & DECORATIVE RETRO ==== */
p, .text-section, .directions-text {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  color: var(--retro-brown);
  padding-left: 22px;
  border-left: 6px solid var(--accent);
  margin-bottom: 10px;
  background: var(--secondary);
}
cite {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.97rem;
  color: var(--accent);
  font-style: normal;
  display: block;
  margin-bottom:4px;
}
.star-rating {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  letter-spacing: 2px;
  color: #FFA000;
  margin-top: 2px;
}

/* === CARD CONTAINERS / SPACING === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 2px 9px var(--card-shadow);
  padding: 20px 18px;
  position: relative;
  min-width: 220px;
  flex: 1 1 220px;
}
.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 {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .container {
    padding: 0 8px;
  }
}

/* ==== FEATURES GRID ==== */
.features, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 -8px 0 -8px;
}
.feature-grid {
  gap: 24px;
  margin-top: 10px;
}
.feature-grid li {
  background: #EFE5D5;
  border-radius: 20px;
  box-shadow: 0 1px 9px #E5D3C0cc;
  padding: 20px 22px;
  min-width: 210px;
  max-width: 300px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 2px solid var(--retro-border);
  position: relative;
  margin-bottom: 15px;
  transition: box-shadow 0.21s, border 0.18s, transform 0.14s;
}
.feature-grid li img {
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 4px 18px #C0B28444;
  border-color: var(--accent);
  transform: translateY(-3px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== TESTIMONIAL CARDS ==== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 20px;
  background: #fffbe9;
  box-shadow: 0 2px 12px var(--card-shadow);
  border: 1.5px solid var(--retro-border);
  flex-direction: row;
}
.testimonial-card blockquote {
  flex: 1 1 60%;
  margin-bottom: 0;
  color: var(--retro-brown);
}
.testimonial-card cite {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 0.96rem;
}
.testimonial-card .star-rating {
  font-size: 1.18rem;
  margin-top: 0;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 8px;
  }
}

/* ==== FOOTER ==== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 38px 0 0 0;
  margin-top: 38px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-brand img {
  width: 44px;
  height: 44px;
}
.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  border-bottom: 2px dotted var(--accent);
  padding-bottom: 3px;
  transition: border-color 0.2s, color 0.22s;
}
.footer-nav a:hover, .footer-nav a:focus {
  border-color: var(--retro-yellow);
  color: var(--accent);
}
footer .container{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  padding-bottom: 22px;
}
@media (max-width: 768px){
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap:14px;
  }
}

/* ==== FAQ & ACCORDION ==== */
.faq-accordion > div {
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 1.5px 7px var(--card-shadow);
  margin-bottom: 14px;
  padding: 16px 18px;
  transition: box-shadow 0.17s;
}
.faq-accordion h3 {
  color: var(--primary);
  margin-bottom: 5px;
}
.faq-accordion .text-section {
  margin-left: 0;
  color: var(--retro-brown);
}
.faq-accordion > div:hover, .faq-accordion > div:focus-within {
  box-shadow: 0 4px 12px #C0B28455;
}

/* ==== TABLES ==== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 1rem;
  background: #FFF9F2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 8px #E5D3C0AA;
  border: 1.5px solid var(--retro-border);
}
thead th {
  background: var(--retro-yellow);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 16px;
  text-align: left;
  font-size: 1.04rem;
}
tbody td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--retro-border);
  color: var(--retro-brown);
}
tbody tr:last-child td {
  border-bottom: none;
}

/* ==== LISTS ==== */
ul, ol {
  padding-left: 22px;
  margin-bottom: 12px;
}
ul li, ol li {
  margin-bottom: 7px;
  position: relative;
}
ul li::before {
  content: '\2022';
  color: var(--accent);
  font-size: 1.07rem;
  position: absolute;
  left: -16px;
  top: -0.5px;
}
ol {
  counter-reset: custom-ol;
}
ol li {
  counter-increment: custom-ol;
}
ol li::before {
  content: counter(custom-ol) '.';
  font-weight: bold;
  position: absolute;
  left: -22px;
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ==== INPUTS & SEARCH BAR ==== */
.search-bar {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.search-bar input[type="text"] {
  border: 1.5px solid var(--retro-border);
  border-radius: 13px;
  padding: 9px 22px;
  font-size: 1rem;
  background: #FFF9F2;
  color: var(--retro-brown);
  margin-top: 4px;
  outline: none;
  transition: border-color 0.2s, background 0.18s;
  min-width: 190px;
}
.search-bar input[type="text"]:focus {
  border-color: var(--accent);
  background: #FFF3DC;
}

/* ==== GUIDE CATEGORIES ==== */
.guide-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.guide-categories li a {
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 20px;
  border-radius: 22px;
  font-size: 0.99rem;
  transition: background 0.19s, color 0.2s;
}
.guide-categories li a:hover,.guide-categories li a:focus {
  background: var(--primary);
  color: var(--retro-yellow);
}

/* ==== DIRECTIONS TEXT ==== */
.directions-text {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.02rem;
  background: var(--retro-yellow);
  border-radius: 13px;
  padding: 13px 20px;
  color: var(--retro-brown);
  margin-top: 12px;
  margin-bottom: 0;
  box-shadow: 0 1.5px 6px #F5DD90cc;
}

/* ==== CTA SECTION ==== */
.cta-section {
  background: var(--retro-blue);
  padding: 40px 0;
  border-radius: 26px;
  box-shadow: 0 4px 18px #A7BECB44;
  margin-bottom: 46px;
}
.cta-section h2 {
  color: var(--primary);
}
.cta-section p {
  color: var(--retro-brown);
}

/* ==== RESPONSIVE CARD GRID ==== */
@media (max-width: 1020px) {
  .feature-grid li {
    min-width: 45vw;
  }
}
@media (max-width: 768px) {
  .feature-grid li, .card {
    width: 100%;
    max-width: 100%;
    min-width: 180px;
  }
}

/* ==== SPACING & FLEX LAYOUTS ==== */
.service-list, .guide-categories ul, .card-container, .content-grid, .feature-grid, .footer-nav {
  gap: 20px;
}
.card {
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== HIERARCHY & TYPOGRAPHY SCALE ====*/
.featured-article {
  font-size: 1.32rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.42rem;
  }
  h2 {
    font-size: 1.11rem;
  }
}

/* ==== RETRO PATTERNS / DECORATIVE ELEMENTS ==== */
.section {
  position: relative;
}
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  background: url('../assets/retro-corner.svg') no-repeat center/contain;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}
.section::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60px; height: 60px;
  background: url('../assets/retro-corner.svg') no-repeat center/contain;
  opacity: 0.13;
  transform: scaleX(-1) scaleY(-1);
  pointer-events: none;
  z-index: 1;
}
@media(max-width: 500px){
  .section::before, .section::after {
    width: 32px;
    height: 32px;
  }
}

/* ==== TRANSITIONS, EFFECTS, INTERACTIONS ==== */
a, .cta-btn, .cta-btn-link, .site-nav a, .feature-grid li, .guide-categories li a, .mobile-menu-toggle, .mobile-menu-close{
  transition: background 0.16s, color 0.16s, box-shadow 0.13s, border-color 0.14s, transform 0.14s;
}

/* ==== FOCUS STATES ==== */
a:focus, button:focus, input:focus {
  outline: 2px dashed var(--accent);
  outline-offset: 2px;
}

/* ==== COOKIE CONSENT BANNER (BOTTOM FIXED) ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2100;
  background: var(--primary);
  color: #fff;
  padding: 20px 18px 18px 18px;
  box-shadow: 0 -2px 16px #3333;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  font-size: 1.03rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-sizing: border-box;
  max-width: 540px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(0.75,0.23,0.22,1), opacity 0.2s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  margin-top: 2px;
}
.cookie-btn {
  padding: 8px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}
.cookie-btn.accept {
  background: var(--accent);
  color: #fff;
  margin-right: 3px;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--accent);
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  text-decoration: underline;
}
.cookie-btn:focus, .cookie-btn:hover {
  filter: brightness(0.92);
  box-shadow: 0 0 6px #E5D3C044;
}
@media (max-width: 600px){
  .cookie-banner {
    max-width: 98vw;
    left: 1vw;
    right: 1vw;
    transform: translateY(120%);
  }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2200;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(36, 67, 107, 0.53);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeIn 0.27s;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fffbe9;
  color: var(--retro-brown);
  border-radius: 18px;
  box-shadow: 0 2px 22px #4D3F2999;
  padding: 34px 24px 22px 24px;
  max-width: 360px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modalSlideIn 0.28s cubic-bezier(0.6,0.24,0.45,1.25);
  position: relative;
}
@keyframes modalSlideIn {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 17px;
  top: 12px;
  background: var(--danger);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 39px; height: 39px;
  cursor: pointer;
}
.cookie-modal h3 {
  color: var(--primary);
  font-size: 1.11rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cookie-category label {
  font-size: 0.98rem;
  color: var(--retro-brown);
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  background: #CADCB3;
  border-radius: 14px;
  position: relative;
  border: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: var(--accent);
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s;
}
.cookie-toggle:checked::before {
  left: 21px;
  background: #FFF6E9;
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(90deg, #FFF5E1 86%, #F5DD90 100%);
  border-bottom: 4px solid var(--accent);
  position: relative;
  padding: 48px 0 44px 0;
}
.hero h1 {
  font-size: 2.45rem;
  color: var(--primary);
  text-shadow: 2px 2px 0 #D8DCE0aa;
}
.hero .subheadline {
  font-size: 1.14rem;
  color: var(--retro-brown);
  margin-bottom: 22px;
  margin-top: 7px;
}
.hero .cta-btn {
  margin-top: 15px;
}
@media (max-width:768px){
  .hero {
    padding: 28px 0 28px 0;
    background: linear-gradient(92deg, #FFF5E1 90%, #F5DD90 100%);
  }
}

/* ==== OTHER BUTTONS & LINK COLORS ==== */
a, a:visited {
  color: var(--accent);
}
a:hover, a:focus {
  color: var(--primary);
  text-decoration: underline;
}

/* ==== UTILITIES ==== */
.text-section {
  margin-bottom: 8px;
}
.hidden {
  display: none !important;
}

/* ==== ENSURE NO OVERLAPPING ELEMENTS ==== */
.section, .card, .card-container > *, .testimonial-card, .feature-grid li {
  margin-bottom: 20px;
}

/* ==== PRINT STYLES (MINIMAL) ==== */
@media print {
  header, footer, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body { background: #fff; color: #222; }
  .section, .card, .testimonial-card { box-shadow: none; }
}
