/* ===== 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,main,menu,nav,output,ruby,section,summary,
time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
}
ol, ul {
  list-style: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border: none; }
:focus {
  outline: 2px dashed #BFA67A;
  outline-offset: 2px;
}

/* ===== CSS VARIABLES (with solid fallback) ===== */
:root {
  --primary: #2C5C36;
  --secondary: #BFA67A;
  --accent: #F5F5EF;
  --retro-orange: #E17600;
  --retro-yellow: #FFD77A;
  --retro-green: #9AAF7E;
  --retro-red: #D26554;
  --retro-blue: #395573;
  --white: #FFFFFF;
  --black: #171910;
}

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
@font-face {
  font-family: 'Oswald';
  src: local('Oswald'), url('https://fonts.gstatic.com/s/oswald/v49/TK3iWkUHHAIjg752FD8Gl-1PK62u.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background-color: var(--accent);
  color: var(--black);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Oswald', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.1;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 2px; }
h4 { font-size: 1.1rem; }
p, ul li, ol li {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: var(--primary);
}

/* ===== VINTAGE RETRO DECORATIVE ELEMENTS ===== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--accent);
  box-shadow: 0 3px 12px rgba(44,92,54,0.10), 0 1.5px 5px rgba(191,166,122,0.03);
  border-radius: 18px;
  border: 3px double var(--secondary);
  position: relative;
}
.section::before {
  content: '';
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  pointer-events: none;
  border-radius: 14px;
  border: 2px dashed var(--retro-green);
  z-index: 0;
  opacity: .20;
}

@media (max-width: 600px) {
  .section {
    padding: 24px 10px;
    margin-bottom: 40px;
  }
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ========== HEADER & NAV ========== */
header {
  width: 100%;
  background: var(--primary);
  box-shadow: 0 3px 12px rgba(44,92,54,0.08);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 4px solid var(--secondary);
  font-family: 'Montserrat', 'Oswald', Arial, sans-serif;
}
header .container {
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
nav.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'Oswald', 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  position: relative;
  transition: color 0.2s;
  padding: 4px 0;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  color: var(--retro-yellow);
}

/* Burger menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2rem;
  cursor: pointer;
  margin-left: 10px;
  z-index: 20;
}
@media (max-width: 980px) {
  nav.main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.86,.46,0,1);
  padding: 36px 24px 24px 24px;
  box-shadow: -8px 0 32px rgba(44,92,54,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--retro-yellow);
  font-size: 2rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 16px;
  z-index: 110;
}
nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 10px;
  width: 100%;
}
nav.mobile-nav a {
  font-family: 'Oswald', 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  padding: 12px 0;
  color: var(--retro-yellow);
  letter-spacing: 2px;
  border-bottom: 1px dotted var(--retro-green);
  transition: color 0.2s;
}
nav.mobile-nav a:hover, nav.mobile-nav a:focus {
  color: var(--retro-orange);
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none;
  }
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary {
  font-family: 'Oswald', 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.07rem;
  padding: 15px 28px;
  border-radius: 40px;
  outline: none;
  border: none;
  letter-spacing: 2px;
  display: inline-block;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(44,92,54,0.08);
  margin-top: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: background 0.18s, color 0.18s, box-shadow 0.25s, border 0.14s;
}
.btn-primary {
  background: var(--retro-yellow);
  color: var(--primary);
  border: 2px solid var(--secondary);
  text-shadow: 1px 1px 1px var(--white), 0px 2px 0 var(--accent);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--retro-orange);
  color: var(--white);
  border: 2px solid var(--retro-orange);
  box-shadow: 0 7px 28px rgba(226,118,0,0.19);
}
.btn-secondary {
  background: var(--primary);
  color: var(--retro-yellow);
  border: 2px solid var(--secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--retro-green);
  color: var(--primary);
  border: 2px solid var(--retro-green);
}

/* ===== HERO SECTION ===== */
.hero {
  margin-bottom: 60px;
  padding: 0;
  position: relative;
  background: var(--retro-yellow);
  border-bottom: 7px double var(--secondary);
  box-shadow: 0 17px 28px -20px var(--primary);
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 360px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero .content-wrapper {
  gap: 16px;
  max-width: 750px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--primary);
  text-shadow: 1px 3px 0 #fffaee, 1px 0px 0 #DFCA9B;
  font-family: 'Oswald', 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
}
.hero p {
  font-size: 1.18rem;
  color: #39371f;
  margin-bottom: 14px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .hero .container {
    padding: 32px 0;
    min-height: auto;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
}

/* ===== FEATURE BOXES / CARD CONTAINERS ===== */
.features {
  background: none;
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  row-gap: 36px;
  justify-content: space-between;
  margin-top: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border: 2.5px solid var(--retro-green);
  border-radius: 18px;
  box-shadow: 0 2px 9px rgba(44,92,54,0.11);
  padding: 32px 20px 24px 20px;
  position: relative;
  min-width: 250px;
  max-width: 350px;
  flex: 1 1 250px;
  transition: transform 0.14s, box-shadow 0.2s;
}
.feature-item img {
  width: 48px; height: 48px; object-fit: contain;
  margin-bottom: 5px;
  filter: sepia(1) hue-rotate(-30deg) brightness(1.1);
}
.feature-item h3 {
  font-size: 1.13rem;
  font-family: 'Oswald', 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  color: var(--retro-orange);
}
.feature-item p {
  font-size: 1rem;
  margin-bottom: 0;
}
.feature-item:hover, .feature-item:focus {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 26px rgba(44,92,54,0.13);
  border-color: var(--retro-yellow);
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-item {
    min-width: 160px;
    padding: 18px 12px 15px 12px;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* ===== TEXT / IMAGE SECTIONS ===== */
.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;
  }
}

/* ===== SERVICES SECTION (LISTS) ===== */
.services ul, .features ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.services ul li, .features ul li {
  padding-left: 0.4em;
  position: relative;
  color: var(--retro-blue);
  font-size: 1.08rem;
  line-height: 1.5;
}
.services ul li:before, .features ul li:before {
  content: '✽';
  font-size: 1.1em;
  color: var(--retro-red);
  position: absolute;
  left: -1.2em;
  top: 0;
}

/* ===== CARDS AND CARD CONTAINER ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  max-width: 370px;
  min-width: 220px;
  background: var(--white);
  border: 2.5px solid var(--retro-yellow);
  border-radius: 18px;
  box-shadow: 0 3px 13px rgba(44,92,54,0.12);
  transition: box-shadow 0.18s, border 0.16s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card:hover, .card:focus {
  box-shadow: 0 13px 38px rgba(191,166,122,0.18);
  border: 2.5px solid var(--retro-orange);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px 14px 16px 14px;
}

/* ===== CTA SECTIONS ===== */
.cta {
  background: var(--retro-green);
  border-radius: 22px;
  box-shadow: 0 2px 18px rgba(44,92,54,0.06);
  border: 2px solid var(--primary);
  padding: 48px 22px;
  margin-bottom: 52px;
}
.cta h2 {
  color: var(--primary);
  font-size: 2rem;
  font-family: 'Oswald', 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.cta p {
  color: var(--black);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .cta {
    padding: 24px 8px 32px 8px;
    border-radius: 12px;
  }
  .cta h2 {
    font-size: 1.25rem;
  }
  .cta p {
    font-size: 1rem;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--retro-yellow);
  border-radius: 16px;
  border: 2.5px dashed var(--secondary);
  box-shadow: 0 3px 12px rgba(44,92,54,0.11);
  padding: 36px 16px 32px 16px;
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1.5px solid var(--retro-green);
  box-shadow: 0 2px 8px rgb(44 92 54 / 9%);
  transition: box-shadow 0.15s,border-color 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 4px 17px rgba(44,92,54,0.13);
  border-color: var(--retro-orange);
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.12rem;
  color: var(--retro-blue);
  background: var(--retro-yellow);
  border-left: 5px solid var(--retro-orange);
  padding: 9px 16px;
  border-radius: 8px;
  margin-bottom: 0;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--retro-red);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.rating {
  font-size: 1.2rem;
  color: var(--retro-yellow);
  letter-spacing: 2px;
  user-select: none;
  text-shadow: 1px 1px 1px var(--primary);
}
@media (max-width: 768px) {
  .testimonials {
    padding: 20px 2px 20px 2px;
  }
  .testimonials .content-wrapper {
    gap: 12px;
  }
}

/* ===== POLICY SECTIONS ===== */
.policy {
  background: var(--retro-blue);
  color: var(--white);
  border-radius: 14px;
  border: 2px solid var(--retro-yellow);
  margin-bottom: 42px;
  padding: 45px 19px;
}
.policy h1, .policy h2, .policy h3 {
  color: var(--retro-yellow);
}
.policy a {
  color: var(--retro-orange);
  text-decoration: underline;
}
@media (max-width: 700px) {
  .policy {
    padding: 18px 6px;
    border-radius: 8px;
  }
}

/* ===== FOOTER ===== */
footer {
  width: 100%;
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 -8px 24px 0 rgba(44,92,54,0.10);
  padding-top: 24px; padding-bottom: 24px;
  font-size: 1rem;
  border-top: 4px solid var(--retro-yellow);
}
footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  font-family: 'Oswald', 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-nav a {
  color: var(--retro-yellow);
  text-decoration: underline dotted var(--retro-orange);
  padding: 1px 6px;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--retro-orange);
}
.footer-copy {
  text-align: center;
  color: var(--secondary);
  font-size: 1em;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 0.9;
}

/* ======= THANK YOU PAGE ======= */
.thank-you {
  background: var(--retro-yellow);
  border-radius: 18px;
  padding: 44px 24px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 54px;
  border: 2px dotted var(--retro-orange);
  box-shadow: 0 3px 8px rgba(44,92,54,0.09);
}
.thank-you h1 {
  color: var(--retro-orange);
  font-size: 2.25rem;
}
.thank-you p {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 10px;
}

/* ====== CONTACT INFO LISTS ====== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 14px 0;
}
.contact-details li {
  padding-left: 0.7em;
  position: relative;
  font-size: 1.07rem;
}
.contact-details li:before {
  content: '✉';
  color: var(--retro-blue);
  font-size: 1.13em;
  position: absolute;
  left: -1.2em;
}
.contact-details li:first-child:before {
  content: '⛶';
  color: var(--retro-green);
}
.contact-details li:nth-child(2):before {
  content: '✉';
  color: var(--retro-blue);
}
.contact-details li:nth-child(3):before {
  content: '⏰';
  color: var(--retro-orange);
}
.map-embed {
  margin-top: 16px;
  background: var(--accent);
  border-radius: 8px;
  padding: 12px 10px;
  border: 1.5px dashed var(--secondary);
  color: var(--retro-green);
}

/* ===== ADDITIONAL TYPOGRAPHY/FAQ TIPS ===== */
.faq-preview, .seasonal-tips-grid {
  margin-top: 30px;
  margin-bottom: 28px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.faq-preview ul {
  gap: 12px;
}
.faq-preview h3 {
  color: var(--retro-green);
}
.seasonal-tips-grid > div {
  flex: 1 1 165px;
  min-width: 145px;
  background: var(--retro-green);
  padding: 18px 12px;
  border-radius: 11px;
  color: var(--white);
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: 2px solid var(--retro-yellow);
}
.seasonal-tips-grid h3 {
  color: var(--retro-yellow);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .seasonal-tips-grid, .faq-preview {
    flex-direction: column;
    gap: 11px;
  }
  .seasonal-tips-grid > div {
    min-width: 0;
    width: 100%;
  }
}

/* ======= SPACING/ALIGNMENT PATTERNS (MANDATORY) ======= */
.section { margin-bottom: 60px; padding: 40px 20px; }
.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; }
.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; }

/* ========== FLEXBOX RESPONSIVENESS ========== */
@media (max-width: 980px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 24px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .card-container {
    gap: 15px;
  }
}

/* ========== COOKIE CONSENT BANNER & MODAL ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: var(--retro-blue);
  color: var(--white);
  padding: 24px 14px 18px 14px;
  box-shadow: 0 -9px 40px 0 rgba(57,85,115,0.16);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  font-size: 1rem;
  animation: cookieBannerIn 0.5s cubic-bezier(.6,1.6,0,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(110%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner strong {
  color: var(--retro-yellow);
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}
.cookie-btn {
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-family: 'Montserrat', 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-right: 2px;
  margin-bottom: 3px;
  box-shadow: 0 2px 7px rgba(44,92,54,0.10);
  transition: background 0.17s, color 0.17s, box-shadow 0.25s;
}
.cookie-btn-accept {
  background: var(--retro-green);
  color: var(--white);
  border: 2px solid var(--retro-green);
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: var(--retro-orange);
  border: 2px solid var(--retro-orange);
}
.cookie-btn-reject {
  background: var(--retro-red);
  color: var(--white);
  border: 2px solid var(--retro-red);
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-btn-settings {
  background: var(--white);
  color: var(--retro-blue);
  border: 2px solid var(--retro-yellow);
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: var(--retro-yellow);
  color: var(--primary);
}
@media (max-width: 600px) {
  .cookie-banner {
    font-size: 0.93rem;
    padding: 15px 6px 10px 6px;
  }
  .cookie-banner-buttons {
    gap: 8px;
  }
}

.cookie-modal-bg {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(33,28,18,0.31);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalBgIn 0.34s cubic-bezier(.56,1.6,0,1);
}
@keyframes modalBgIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  border: 2.2px solid var(--retro-green);
  border-radius: 18px;
  box-shadow: 0 8px 36px rgba(57,85,115,0.17);
  min-width: 350px;
  max-width: 98vw;
  padding: 34px 30px 28px 30px;
  position: relative;
  animation: modalIn 0.35s cubic-bezier(.76,1.2,0,1);
}
@keyframes modalIn {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal-title {
  color: var(--retro-blue);
  font-family: 'Oswald', 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--retro-red);
  cursor: pointer;
  z-index: 1;
}
.cookie-modal-categories {
  margin: 22px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-toggle-group {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 0;
}
.cookie-toggle-group label {
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle {
  width: 45px;
  height: 26px;
  background: var(--accent);
  border-radius: 20px;
  border: 1.5px solid var(--retro-green);
  position: relative;
  transition: background 0.13s;
  margin-right: 5px;
  cursor: pointer;
  display: inline-block;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle span {
  display: block;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--retro-green);
  position: absolute;
  top: 2px; left: 2px;
  transition: left 0.16s, background 0.16s;
}
.cookie-toggle input[type="checkbox"]:checked + span {
  left: 22px;
  background: var(--retro-orange);
}
.cookie-category-desc {
  font-size: 0.97rem;
  color: #585131;
  margin-left: 2.4em;
  margin-top: 2px;
  font-style: italic;
}
.cookie-category-essential {
  color: var(--retro-blue); font-weight: bold;
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
  justify-content: flex-end;
}

@media (max-width: 500px) {
  .cookie-modal {
    min-width: unset;
    padding: 18px 3vw 18px 3vw;
    border-radius: 10px;
  }
  .cookie-modal-title {
    font-size: 1.08rem;
  }
}

/* ===== MISC HEADINGS/LISTS ===== */
main ul, main ol {
  margin-bottom: 18px;
  padding-left: 1.2em;
}
main ul {
  list-style: disc outside;
}
main ol {
  list-style: decimal outside;
}
main li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* ===== UTILITIES ===== */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.gap-16 { gap: 16px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.rounded { border-radius: 16px !important; }

/* ===== SCROLLBAR (optional, vintage style) ===== */
::-webkit-scrollbar { width: 13px; background: var(--accent); }
::-webkit-scrollbar-thumb { background: var(--retro-green); border-radius: 6px; border: 3px solid var(--accent); }
::-webkit-scrollbar-thumb:hover { background: var(--retro-orange); }

/* ===== SUBTLE RETRO TRANSITIONS & EFFECTS ===== */
a, .btn-primary, .btn-secondary, nav.main-nav a, nav.mobile-nav a, .feature-item, .card, .testimonial-card {
  transition: color 0.18s, background 0.18s, border 0.18s, box-shadow 0.23s, transform 0.13s;
}
h1, h2, h3, .logo img {
  transition: color 0.18s, text-shadow 0.20s;
}

/* ===== OVERLAY Z-STACK FOR MENUS & MODALS ===== */
header { z-index: 1000; }
.mobile-menu { z-index: 1100; }
.cookie-banner { z-index: 1200; }
.cookie-modal-bg { z-index: 1300; }

/* ===============================
   END OF VINTAGE RETRO FLEX CSS
  =============================== */
