/* ===== 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-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}
body {
  min-height: 100vh;
  height: 100%;
  width: 100%;
  line-height: 1.55;
  background: #FCF5E5;
  color: #23436D;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #C13E1D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #EA6A47;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  background: none;
  border: none;
  padding: 0;
}
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  border: 2px solid #C9B8A6;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fffdf8;
  margin-top: 6px;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: #C13E1D;
}

/* ===== VINTAGE RETRO BRAND COLORS & PATTERNS ===== */
:root {
  --brand-primary: #23436D;
  --brand-primary-rgb: 35,67,109;
  --brand-secondary: #F2F6F9;
  --brand-accent: #C13E1D;
  --brand-orange: #EA6A47;
  --brand-bg-light: #FCF5E5;
  --brand-cream: #F6EDDB;
  --brand-yellow: #FFD978;
  --brand-blue-light: #E8F0F8;
  --brand-green: #6C925D;
  --brand-brown: #8C6A4A;
  --brand-shadow: rgba(60,45,24,.08);
  --brand-shadow-card: rgba(35,67,109,0.10);
  --pattern-diagonal: repeating-linear-gradient(135deg, #f6eddb 0px, #f6eddb 30px, #F2F6F9 30px, #F2F6F9 60px);
}

/* ===== TYPOGRAPHY ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: none;
  color: #23436D;
  letter-spacing: 0.02em;
  font-weight: 700;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  font-weight: 900;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}
p, ul, ol, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  color: #3d2d1a;
  margin-bottom: 1.1em;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
}

/* ===== CONTAINER AND LAYOUTS ===== */
.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--pattern-diagonal);
  border-radius: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container, .feature-grid, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffdf8;
  box-shadow: 0 4px 18px var(--brand-shadow-card);
  border-radius: 18px;
  padding: 32px 28px 28px 28px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 28px var(--brand-shadow-card);
  transform: translateY(-4px) scale(1.03);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.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;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: var(--brand-cream);
  border-bottom: 4px solid var(--brand-orange);
  box-shadow: 0 2px 8px var(--brand-shadow);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
.logo img {
  height: 56px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-left: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #23436D;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 4px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #C13E1D;
  text-decoration: none;
}
.btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 999px;
  box-shadow: 0 2px 10px 0 var(--brand-shadow);
  cursor: pointer;
  border: 0;
  transition: background 0.17s, color 0.15s, box-shadow 0.15s, transform 0.12s;
  display: inline-block;
  outline: none;
  margin-right: 0;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: #C13E1D;
  color: #fff;
  border: 2.5px solid #B44E0E;
}
.btn-primary:hover, .btn-primary:focus {
  background: #EA6A47;
  color: #fffefb;
  box-shadow: 0 6px 18px var(--brand-shadow);
  transform: translateY(-2.5px) scale(1.04);
}
.btn-secondary {
  background: #FFD978;
  color: #23436D;
  border: 2.5px solid #E8B419;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FFF1BC;
  color: #B44E0E;
  box-shadow: 0 6px 18px var(--brand-shadow);
  transform: translateY(-2.5px) scale(1.04);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  font-size: 2rem;
  display: none;
  background: #FAE4BC;
  border-radius: 8px;
  padding: 8px 12px;
  border: none;
  color: #C13E1D;
  cursor: pointer;
  z-index: 45;
  box-shadow: 0 1px 5px #C13E1D22;
  transition: background 0.18s, color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFEBB3;
  color: #EA6A47;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(252, 245, 229, 0.98);
  box-shadow: 0 6px 36px #c13e1d52;
  z-index: 1080;
  transform: translateX(-105vw);
  transition: transform .35s cubic-bezier(.77,.2,.19,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 24px 20px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  align-self: flex-end;
  color: #C13E1D;
  padding: 8px 16px 10px 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #EA6A47;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.mobile-nav a {
  color: #23436D;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 2px solid #C13E1D22;
  border-radius: 0;
  transition: color 0.13s, background 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #EA6A47;
  background: #fff2ce;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap: 4px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-right: 8px;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 12px;
  }
}

/* ===== HERO SECTION ===== */
section:first-child {
  background: #FFEED2;
  border-radius: 0 0 24px 24px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===== FEATURES / SERVICES ===== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 16px;
}
.feature-grid > div {
  flex-basis: 291px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--brand-shadow-card);
  padding: 28px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 218px;
  max-width: 340px;
  position: relative;
  margin-bottom: 20px;
  border: 3px dashed #E2CEAC;
  transition: box-shadow 0.17s, transform 0.15s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 20px var(--brand-orange);
  border-color: #FFEED2;
  transform: scale(1.035) rotate(-1deg);
}
.feature-grid img {
  width: 52px;
  height: 52px;
  background: #FCF5E5;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 4px rgba(60,45,24,.08);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.feature-list li {
  background: #FFFAEA;
  border-left: 5px solid #C13E1D;
  padding: 10px 18px 10px 16px;
  border-radius: 8px;
  color: #3d2d1a;
  font-weight: 600;
  margin-bottom: 8px;
  box-shadow: 0 1px 5px #C13E1D11;
}

/* ===== SERVICE LISTS ===== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 18px 0;
}
.service-list li {
  background: #fffdf9;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--brand-shadow-card);
  padding: 20px 26px 22px 22px;
  margin-bottom: 20px;
  border-left: 7px solid #C13E1D;
  color: #23436D;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow .19s, border-color .13s;
}
.service-list li:hover {
  box-shadow: 0 8px 22px var(--brand-accent);
  border-left: 7px solid #EA6A47;
}
.service-list li h3 {
  font-size: 1.18rem;
  color: #C13E1D;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.service-list li h3 span {
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #8C6A4A;
  font-weight: 600;
  padding-left: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 6px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 22px 20px 26px;
  margin-bottom: 20px;
  background: #fffdf9;
  box-shadow: 0 2px 14px var(--brand-shadow-card);
  border-radius: 14px;
  border: 2.5px solid #FFD978;
  min-width: 250px;
  max-width: 390px;
  position: relative;
  font-size: 1.07rem;
  color: #342B1F;
  transition: box-shadow .13s, border-color .13s, transform .13s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 26px var(--brand-shadow-card);
  transform: translateY(-2.5px) scale(1.04) rotate(-1deg);
  border-color: #EA6A47;
}
.testimonial-card p {
  color: #342B1F;
  font-size: 1.07rem;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-info {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #8C6A4A;
  font-weight: 700;
  font-size: 1.04rem;
}

/* ===== CTA BUTTONS ===== */
.cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* ===== TEXT SECTIONS ===== */
.text-section {
  margin-bottom: 18px;
  font-size: 1.08rem;
  color: #403325;
  background: #fff8ef;
  border-radius: 18px;
  padding: 22px 25px;
  box-shadow: 0 2px 8px #8C6A4A10;
}
.text-section a {
  color: #C13E1D;
  font-weight: 600;
}

/* ===== FORMS ===== */
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #23436D;
  margin-bottom: 4px;
}
::placeholder {
  color: #BFBFBF;
  opacity: 1;
}

/* ===== FOOTER ===== */
footer {
  background: #FFD978;
  border-top: 4px solid #C13E1D;
  box-shadow: 0 -2px 14px #C13E1D18;
  margin-top: 44px;
  color: #403325;
  font-size: 1rem;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  padding: 34px 20px 18px 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 120px;
}
.footer-nav a {
  color: #23436D;
  font-weight: 600;
  font-size: 1.02rem;
  text-decoration: none;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #C13E1D; }
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 12px;
  font-size: 0.97rem;
}
.legal-links a {color: #8C6A4A; transition: color 0.14s;}
.legal-links a:hover, .legal-links a:focus { color: #EA6A47; }
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  margin-top: 14px;
}
.footer-social img {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 2px solid #C13E1D18;
  background: #FFFBE6;
  transition: box-shadow .18s, border-color .13s;
}
.footer-social img:hover {
  box-shadow: 0 4px 14px #EA6A4740;
  border-color: #C13E1D;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFEED2;
  box-shadow: 0 -2px 16px #C13E1D24;
  z-index: 1300;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  gap: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #23436D;
  border-top: 4px solid #C13E1D;
  animation: slideUpBanner .7s cubic-bezier(.8,-0.1,.25,1.2);
}
@keyframes slideUpBanner {
  0% {transform: translateY(120%);opacity: 0;}
  100% {transform: translateY(0);opacity: 1;}
}
.cookie-banner button {
  margin-left: 10px;
  margin-bottom: 0;
}
.cookie-banner .btn {
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 30px;
  margin-left: 5px;
  background: #FFD978;
  color: #23436D;
  border: 2px solid #E8B419;
  transition: background 0.15s, color 0.13s;
}
.cookie-banner .btn.accept {
  background: #C13E1D;
  color: #fff;
  border: 2px solid #B44E0E;
}
.cookie-banner .btn.accept:hover, .cookie-banner .btn.accept:focus {
  background: #EA6A47;
  color: #fffefb;
}
.cookie-banner .btn.reject {
  background: #FFEED2;
  color: #C13E1D;
  border: 2px solid #C13E1D22;
}
.cookie-banner .btn.reject:hover, .cookie-banner .btn.reject:focus {
  background: #FFD978;
  color: #8C6A4A;
}
.cookie-banner .btn.settings {
  background: #fffdf9;
  color: #C13E1D;
  border: 2px solid #FFD978;
}
.cookie-banner .btn.settings:hover, .cookie-banner .btn.settings:focus {
  background: #FFD978;
  color: #23436D;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 96%;
  max-width: 410px;
  background: #fffdf9;
  border-radius: 18px;
  box-shadow: 0 14px 48px #C13E1D38;
  z-index: 1401;
  padding: 34px 30px 26px 30px;
  transform: translate(-50%, -55%) scale(0.96);
  transition: opacity 0.23s, transform 0.24s cubic-bezier(.8,.07,.46,.97);
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h3 {
  font-size: 1.165rem;
  margin-bottom: 9px;
  color: #C13E1D;
}
.cookie-prefs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 16px 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23436D;
  font-weight: 600;
  margin-bottom: 0;
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: #C13E1D;
  cursor: pointer;
}
.cookie-category .always-on {
  color: #8C6A4A;
  margin-left: 6px;
  font-size: 0.97em;
}
.cookie-modal .btn-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.3rem;
  background: none;
  color: #C13E1D;
  border: none;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .btn-close:hover, .cookie-modal .btn-close:focus {
  color: #EA6A47;
}
.cookie-modal .btn {
  font-size: 1rem;
  margin-top: 18px;
}

/* ===== RETRO EFFECTS & PATTERNS ===== */
.section, .feature-grid > div, .card, .testimonial-card, .service-list li, .text-section {
  background-image: linear-gradient(123deg, #fff8ef 80%, #FFEED2 100%);
}

/* ===== RETRO TOUCH: Polka dots on hero (only first section) ===== */
section:first-child {
  position: relative;
  overflow: hidden;
}
section:first-child::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 20px;
  width: 210px;
  height: 210px;
  background: radial-gradient(#FFD978 12px, transparent 14px);
  background-size: 48px 48px;
  border-radius: 50%;
  opacity: 0.23;
  z-index: 2;
}
section:first-child::after {
  content: '';
  position: absolute;
  right: -55px;
  bottom: 8px;
  width: 140px;
  height: 140px;
  background: radial-gradient(#EA6A47 10px, transparent 12px);
  background-size: 38px 38px;
  border-radius: 50%;
  opacity: 0.14;
  z-index: 2;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1080px) {
  .container { max-width: 97vw; }
  .feature-grid > div { flex-basis: 47%; }
  .testimonial-card { min-width: 180px; }
}
@media (max-width: 850px) {
  .footer-nav, .legal-links, .footer-social {
    font-size: 0.99rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  section, .section {
    padding: 28px 5vw;
    margin-bottom: 38px;
  }
  .feature-grid {
    gap: 18px;
  }
  .feature-grid > div {
    max-width: 98vw;
    flex-basis: 100%;
    margin-bottom: 14px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 99vw;
    min-width: 140px;
    padding: 18px 12px 15px 14px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .container {
    padding: 0 10px;
  }
  .content-grid {
    gap: 12px;
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-nav, .legal-links {
    flex-direction: column;
    gap: 3.5px;
    margin-top: 8px;
  }
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 20px 8px 14px 8px;
  }
  .card, .service-list li, .feature-grid > div, .testimonial-card, .text-section {
    padding: 16px 11px 12px 12px;
  }
}
@media (max-width: 480px) {
  .feature-grid > div, .card, .service-list li, .testimonial-card {
    font-size: 0.96rem;
  }
  .cookie-modal {
    padding: 16px 5px 18px 8px;
    max-width: 98vw;
  }
}

/* ===== MICRO-INTERACTIONS ===== */
.btn, .main-nav a, .mobile-nav a {
  transition: background 0.17s, color 0.15s, box-shadow 0.16s, transform 0.12s;
}
input, select, textarea {
  transition: border-color 0.14s, box-shadow 0.13s;
}
.card, .feature-grid > div, .testimonial-card, .service-list li {
  transition: box-shadow 0.2s, border-color 0.16s, transform 0.13s;
}

/* ===== RETRO DECORATIONS: Underline effect for headings ===== */
h1, h2 {
  position: relative;
  z-index: 3;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 78px;
  height: 4px;
  background: #FFD978;
  border-radius: 2px;
  margin-top: 7px;
  margin-bottom: -2px;
}
h1::after {
  background: #EA6A47;
}

/* ===== Retro dashed border as section accent ===== */
.section {
  border: 3px dashed #FFD978;
  border-radius: 24px;
}

/* ===== Accessibility: Focus ===== */
a:focus, button:focus, .btn:focus {
  outline: 3px dashed #C13E1D;
  outline-offset: 1px;
  background: #FFF3D4;
}

/* ===== Miscellaneous Section Spacing and Card Gaps (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; }

/* ===== Hide/Show Cookie Banner ===== */
.cookie-banner.hide {
  display: none !important;
}
/* ===== Hide/Show Modal Overlay ===== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1400;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(60,45,24,0.23);
  opacity: 1;
  animation: modalOverlayFadeIn .37s cubic-bezier(0.77,0.2,0.19,0.99);
}
@keyframes modalOverlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* ===== END of CSS ===== */
