/* =========================================================
   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%;
  vertical-align: baseline;
  box-sizing: border-box;
  background: transparent;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background-color: #f5e6c4;
  color: #264653;
  font-family: 'Open Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
a {
  color: #2d2926;
  text-decoration: none;
  transition: color .2s cubic-bezier(0.4,0,0.2,1);
}
a:hover, a:focus {
  color: #a3b18a;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}

/* =============================
   VINTAGE RETRO THEME VARIABLES
   ============================= */
:root {
  --color-primary: #264653;
  --color-secondary: #a3b18a;
  --color-accent: #f5e6c4;
  --color-retro-orange: #f7a072;
  --color-retro-red: #c84630;
  --color-retro-blue: #38618c;
  --color-retro-dark: #4d3e3e;
  --color-retro-bg: #f5e6c4;
  --color-white: #fff;
  --color-black: #2d2926;

  --font-display: 'Montserrat', 'Arial Rounded MT Bold', 'Arial Black', Arial, sans-serif;
  --font-body: 'Open Sans', 'Arial', sans-serif;

  --border-radius-lg: 18px;
  --border-radius-sm: 8px;
  --shadow-card: 0 4px 18px rgba(77,62,62,0.13);
  --shadow-hover: 0 8px 28px rgba(77,62,62,0.13);
  --shadow-banner: 0 -4px 24px rgba(77,62,62,0.08);
  --focus-outline: 2px solid #c84630;
}

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-retro-dark);
  letter-spacing: 2px;
  font-weight: 700;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1.15;
  text-shadow: 1px 3px 0 var(--color-accent), 2px 6px 0 #e4be83;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.2;
}
h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--color-retro-orange);
  margin-top: 10px;
  border-radius: 2px;
  opacity: 0.45;
}
h3 {
  font-size: 1.2rem;
  margin: 18px 0 10px 0;
  font-weight: 700;
  letter-spacing: 1px;
}
.lead,
p.lead {
  font-size: 1.15rem;
  color: var(--color-retro-blue);
  margin-bottom: 22px;
  font-weight: 600;
  font-family: var(--font-body);
}
p {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-black);
  margin-bottom: 14px;
}
strong {
  color: var(--color-retro-red);
  font-weight: 600;
  font-family: var(--font-display);
}

/* =============
   CONTAINER, SPACING & FLEX LAYOUTS
   ============= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  transition: box-shadow .2s;
  border: 2px solid var(--color-retro-blue);
  min-width: 280px;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--color-retro-orange);
}
.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fffbe9;
  border-radius: var(--border-radius-sm);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(77,62,62,.10);
  border-left: 8px solid var(--color-retro-blue);
  font-family: var(--font-body);
  color: #2d2926;
}
.testimonial-card p {
  color: #2d2926;
  font-style: italic;
  font-size: 1.05rem;
}
.testimonial-card span {
  font-size: 0.97rem;
  font-family: var(--font-display);
  letter-spacing: 1px;
  color: var(--color-retro-dark);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.faq-item {
  border-left: 5px solid var(--color-retro-orange);
  background: #fcf5eb;
  border-radius: var(--border-radius-sm);
  margin-bottom: 20px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(77,62,62,0.09);
}

/* ====================================
   HEADER, NAVIGATION & LOGO STYLING
===================================== */
header {
  background: var(--color-primary);
  color: var(--color-accent);
  width: 100%;
  box-shadow: 0 2px 16px rgba(38,70,83,0.09);
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.logo img {
  height: 44px;
  width: auto;
  filter: sepia(0.18) saturate(1.4) contrast(1.1);
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color .2s;
  position: relative;
  padding: 4px 2px;
}
nav a:hover, nav a:focus {
  color: var(--color-retro-orange);
}
.cta-btn {
  background: var(--color-retro-red);
  color: var(--color-white) !important;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 30px;
  border: none;
  margin-left: 32px;
  box-shadow: 0 3px 12px rgba(77,62,62,0.13);
  cursor: pointer;
  transition: background .15s, box-shadow .17s, transform .18s;
  outline: none;
  display: inline-block;
  letter-spacing: 1px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-retro-orange);
  color: var(--color-retro-dark) !important;
  box-shadow: 0 6px 24px rgba(38,70,83,0.11);
  transform: translateY(-2px) scale(1.03);
}

/* =====================
   MOBILE MENU STYLES
====================== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-retro-red);
  color: var(--color-accent);
  border: 0;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 16px;
  z-index: 1300;
  transition: background .15s;
  cursor: pointer;
}
.mobile-menu-toggle:focus {
  outline: var(--focus-outline);
}
.mobile-menu-toggle:hover {
  background: var(--color-retro-orange);
  color: var(--color-retro-dark);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 94vw;
  max-width: 380px;
  height: 100%;
  z-index: 2000;
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: -4px 0 32px rgba(60,34,6,0.19);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 24px 0 0 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--color-retro-orange);
  color: var(--color-retro-dark);
  border: 0;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  float: right;
  margin: 0 16px 12px 0;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  cursor: pointer;
  display: flex;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-retro-red);
  color: var(--color-white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 34px 30px 30px 30px;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 1.2rem;
  padding: 10px 3px;
  transition: color.19s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-retro-orange);
  background: rgba(245,230,196, .08);
  outline: none;
}

/* =====================
   RESPONSIVE HEADER
====================== */
@media (max-width: 992px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
  }
  nav {
    gap: 20px;
  }
  .cta-btn {
    margin-left: 0;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  nav,
  .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    padding-right: 60px;
  }
}
@media (max-width: 500px) {
  .mobile-menu {
    max-width: 100vw;
    width: 100vw;
    padding: 0;
  }
}

/* ===============
   SECTIONS & LISTS
   =============== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-retro-bg);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 1px 12px rgba(244,210,148,0.05);
}
section:last-child {
  margin-bottom: 0;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 18px;
}
ul li,
ol li {
  margin-bottom: 12px;
  list-style: disc inside;
  font-size: 1.06rem;
  font-family: var(--font-body);
  color: var(--color-black);
}
ol li {
  list-style-type: decimal;
}
h2 + .content-wrapper,
h2 + ul,
h2 + ol {
  margin-top: 12px;
}

/* ============
   FOOTER STYLING
============== */
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  margin-top: 44px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 18px;
}
.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 1px;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-retro-orange);
}
.footer-contact p {
  color: var(--color-accent);
  font-size: .98rem;
}
@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* ===============
   BUTTONS, LINK STATES
================= */
button, input[type=button], input[type=submit], .cta-btn {
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  transition: background .19s, color .12s, box-shadow .15s, transform.18s;
  border: none;
  outline: none;
}
button:focus, .cta-btn:focus {
  outline: var(--focus-outline);
}

/* ====================
   CARDS, FEATURED, ETC.
===================== */
@media (min-width: 700px) {
  .content-wrapper {
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
  }
  .testimonial-card {
    max-width: 390px;
    margin-right: 20px;
  }
}

@media (max-width: 700px) {
  .section, section {
    padding: 26px 7px;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 6px;
  }
  h1 {
    font-size: 1.48rem;
  }
  h2 {
    font-size: 1.08rem;
  }
  .card {
    padding: 18px 10px;
  }
  .testimonial-card {
    padding: 16px 9px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ===============================
   RETRO ELEMENTS & MICRO-ANIMATIONS
================================*/
.card, .testimonial-card, .faq-item {
  will-change: transform, box-shadow;
}
.card:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 8px 28px rgba(77,62,62,0.11);
}
.card:active {
  transform: scale(0.98);
}

.content-wrapper > * {
  margin-bottom: 10px;
}

/* Retro Dots (background pattern example): */
body::before {
  content: "";
  display: block;
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(210, 180, 140,.09) 1.4px, transparent 1.4px), radial-gradient(rgba(232, 170, 119,.07) 1.4px, transparent 1.4px);
  background-size: 40px 40px, 30px 30px;
  background-position: 0 0, 20px 20px;
  z-index: 0;
}

/* Retro underline for all main links */
nav a::after, .mobile-nav a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  background: var(--color-retro-orange);
  transition: width .22s;
  margin-top: 2px;
  border-radius: 2px;
}
nav a:hover::after, nav a:focus::after,
.mobile-nav a:hover::after, .mobile-nav a:focus::after {
  width: 100%;
}

/* ===========
   MODALS, BANNERS
============= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbe9;
  color: #2d2926;
  z-index: 9999;
  border-top: 2px solid var(--color-retro-orange);
  box-shadow: var(--shadow-banner);
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  transition: transform .28s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity .2s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 350px;
  max-width: 500px;
}
.cookie-banner__actions {
  flex: 1 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--color-primary);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 24px;
  border: none;
  padding: 9px 18px;
  box-shadow: 0 2px 8px rgba(77,62,62,.09);
  margin: 2px;
  transition: background .14s, color .13s, box-shadow .12s;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-btn--settings {
  background: var(--color-retro-orange);
  color: var(--color-retro-dark);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-secondary);
  color: var(--color-retro-dark);
  box-shadow: 0 4px 16px rgba(77,62,62,.11);
  outline: none;
}
.cookie-banner__close {
  background: transparent;
  border: none;
  color: #b08b58;
  display: flex;
  align-items: center;
  font-size: 1.5em;
  margin-left: 8px;
  cursor: pointer;
}

/* Cookie Modal Overlay & Box */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(38,70,83,0.45);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .28s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fffbe9;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 38px rgba(77,62,62,0.17);
  width: 97vw;
  max-width: 450px;
  padding: 36px 28px 23px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h3 {
  color: var(--color-retro-dark);
  font-family: var(--font-display);
  font-size: 1.24rem;
  margin-bottom: 10px;
}
.cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: var(--color-retro-orange);
  color: var(--color-retro-dark);
  font-size: 1.3rem;
  border-radius: 50%;
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cookie-category {
  background: #f9f2e3;
  border-radius: 8px;
  padding: 14px 14px 11px 18px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cookie-category label {
  font-family: var(--font-body);
  font-size: 1.01rem;
  color: var(--color-retro-dark);
  font-weight: 600;
}
.toggle-switch {
  display: inline-flex;
  align-items: center;
}
.toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  width: 32px;
  height: 18px;
  background: #dbc69a;
  border-radius: 18px;
  position: relative;
  transition: background .13s;
  margin-left: 12px;
  box-shadow: 0 2px 7px rgba(136,87,31,0.08);
  cursor: pointer;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--color-retro-orange);
}
.toggle-slider::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  transition: transform .18s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.09);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(13px);
}

/* ============
   UTILITIES
============ */
.text-center {
  text-align: center;
}
.mt-1 { margin-top: 8px; }
.mb-1 { margin-bottom: 8px; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }
.max-w-600 { max-width: 600px; }

/* ==================
   CARE: NO GRID, NO COLUMN
================== */
/* NO display:grid, NO column-* props used! All layouts use only flex. */

/* ============
   PRINT STYLE
============ */
@media print {
  body, section, header, footer {
    background: #fff !important;
    color: #2d2926;
    box-shadow: none !important;
  }
  .cookie-banner, .mobile-menu {
    display: none !important;
  }
}

/******* END OF SHEET ******/