/* --------------------------------------------------
   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;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  scroll-behavior: smooth;
  background: #f4ede6;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f4f4f6;
  color: #48403c;
  font-size: 16px;
  min-height: 100vh;
}
a {
  color: #142850;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #00909e;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button, input[type="button"], input[type="submit"], .cta-button {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.3s;
  appearance: none;
}

/* --------------------------------------------------
   BRAND & RETRO TYPOGRAPHY
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

:root {
  --primary: #142850;
  --secondary: #00909e;
  --accent: #f4f4f6;
  --retro-red: #b04a4a;
  --retro-yellow: #ffd470;
  --retro-green: #68b594;
  --retro-blue: #647aa3;
  --retro-orange: #e2935f;
  --text-main: #2c1810;
  --text-dark: #2a2522;
  --text-light: #fefefe;
  --shadow-retro: 0 4px 24px rgba(148,118,106,0.08), 0 2px 8px rgba(110,82,61,0.09);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--primary);
  margin-bottom: 12px;
  text-shadow: 1px 2px 0 #ffd47022, 0 1px 0 #fff8c5;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 16px;
  color: var(--text-main);
  font-size: 1rem;
}
strong {
  color: var(--retro-red);
  font-weight: 700;
}

.text-section {
  max-width: 720px;
}

/* Decorative vintage underlines for section titles */
h2 {
  position: relative;
  padding-bottom: 12px;
}
h2:after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--retro-yellow);
  border-radius: 2px;
  margin-top: 8px;
}

/* --------------------------------------------------
   CONTAINER, FLEX LAYOUTS & SPACING
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff7ec;
  border-radius: 18px;
  box-shadow: var(--shadow-retro);
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff7ec;
  border-radius: 18px;
  box-shadow: var(--shadow-retro);
  padding: 28px 24px;
  min-width: 240px;
  flex: 1 1 260px;
}

.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;
  background: #f8efe2;
  box-shadow: 0 4px 16px rgba(151,85,55,0.07);
  border: 2px dashed var(--retro-orange);
  border-radius: 20px;
  margin-bottom: 24px;
  position: relative;
  color: var(--text-dark);
  font-size: 1.02rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --------------------------------------------------
   HEADER & MAIN NAV BAR (Retro Styling)
-------------------------------------------------- */
header {
  background: var(--retro-yellow);
  box-shadow: 0 2px 10px #ffe5b5cc;
  border-bottom: 2px solid var(--retro-orange);
  position: relative;
}

header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
}
header a img {
  height: 44px;
  margin-right: 22px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 18px;
  color: var(--primary);
  border-radius: 30px;
  background: transparent;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--retro-blue);
  color: var(--retro-yellow);
  border: 2px solid var(--retro-blue);
  box-shadow: 0 1px 10px #809fc922;
}

.cta-button {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: var(--retro-red);
  color: var(--text-light) !important;
  padding: 12px 34px;
  font-size: 1.08rem;
  border-radius: 32px;
  margin-left: 18px;
  box-shadow: 0 4px 16px #8f3c3c17;
  letter-spacing: 0.02em;
  border: 3px solid var(--retro-yellow);
  outline: none;
  transition: background 0.22s, box-shadow 0.22s, border 0.22s, transform 0.14s;
  text-decoration: none;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: var(--retro-green);
  color: var(--primary) !important;
  border: 3px solid var(--retro-blue);
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
  box-shadow: 0 6px 24px #56c09744;
}

/* ---------------------------------
   MOBILE BURGER MENU
---------------------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: var(--primary);
  background: var(--retro-yellow);
  border: none;
  border-radius: 10px;
  padding: 4px 14px;
  margin-left: 20px;
  transition: background 0.25s, box-shadow 0.25s;
}
.mobile-menu-toggle:hover {
  background: var(--retro-orange);
  color: #fff;
  box-shadow: 0 2px 12px #ecd9ca36;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 95vw;
  height: 100vh;
  background: #fff8ea;
  box-shadow: -3px 0 20px #6e4e231a;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.57,.18,.44,1.11);
  padding: 0 0 32px 24px;
  will-change: transform;
  opacity: 0.98;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 24px;
  margin-right: 24px;
  margin-bottom: 8px;
  align-self: flex-end;
  font-size: 2rem;
  color: var(--retro-red);
  border-radius: 8px;
  background: var(--retro-yellow);
  border: 2px solid var(--retro-orange);
  padding: 3px 14px;
  transition: background 0.21s;
}
.mobile-menu-close:hover {
  background: var(--retro-orange);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 0 0 0 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 19px;
  color: var(--primary);
  background: transparent;
  border: 2px solid transparent;
  transition: background 0.17s, color 0.19s, border 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-blue);
  color: var(--retro-yellow);
  border: 2px solid var(--retro-blue);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  .hero .container, .features .container, .section .container {
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* --------------------------------------------------
   HERO SECTION (Retro visual)
-------------------------------------------------- */
.hero {
  background: repeating-linear-gradient(120deg, #efe2cc, #ffe7ae 38px, #f2ca8c 44px, #f4f4f6 68px);
  border-bottom: 2px dotted var(--retro-orange);
  box-shadow: 0 12px 32px #ffe7ae26;
  padding: 48px 0 32px 0;
  margin-bottom: 36px;
}
.hero h1 span {
  color: var(--retro-red);
  text-shadow: 1px 2px #ffd47050, 0 1px #fff8c5;
  background: var(--retro-yellow);
  border-radius: 8px 22px 10px 16px;
  padding: 2px 16px 4px 8px;
  margin-left: 6px;
}
.hero p {
  font-size: 1.16rem;
  color: var(--retro-blue);
  max-width: 600px;
}

/* ---------------------------------
   FEATURES & ICON LISTS
---------------------------------- */
.features {
  background: #fff7ec;
  border-radius: 16px;
  box-shadow: 0 8px 38px #fae18014;
  margin-bottom: 60px;
  padding: 40px 0;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 18px;
  margin-bottom: 12px;
}
.features ul li {
  display: flex;
  align-items: center;
  background: #fcf0da;
  border-radius: 14px;
  box-shadow: 0 1px 6px #fbcd7688;
  color: var(--text-dark);
  font-size: 1.08rem;
  padding: 12px 20px 12px 16px;
  min-width: 260px;
  flex: 1 1 280px;
  margin-bottom: 0;
  font-family: 'Roboto', Arial, sans-serif;
  gap: 10px;
  border: 2px solid #ffe0a8;
  transition: box-shadow 0.15s, border 0.12s;
}
.features ul li img {
  width: 32px;
  height: 32px;
  margin-right: 11px;
  filter: sepia(0.22) saturate(1.2) hue-rotate(-12deg);
}
.features ul li:hover {
  box-shadow: 0 8px 24px #f8c14444;
  border: 2px solid var(--retro-orange);
  background: #f7eabf;
  transform: translateY(-2px) scale(1.02);
}

@media (max-width: 870px) {
  .features ul {
    flex-direction: column;
    gap: 14px;
  }
  .features ul li {
    min-width: unset;
    width: 100%;
  }
}

/* ---------------------------------
   SERVICES & CARDS
---------------------------------- */
.services {
  background: #faf6ee;
  border-radius: 18px;
  box-shadow: 0 8px 34px #b8943d18;
  margin-bottom: 60px;
  padding: 40px 0 45px 0;
}
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 10px;
  margin-bottom: 12px;
}
.services ul li {
  flex: 1 1 260px;
  min-width: 250px;
  background: #fff9f1;
  border-radius: 16px;
  border: 2px solid #ffe6ba;
  box-shadow: 0 1px 12px #efd7bc88;
  padding: 24px 14px 22px 18px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.16s, border 0.12s, transform 0.12s;
}
.services ul li h3 {
  color: var(--secondary);
  text-shadow: 1px 2px #ffd47022;
  font-size: 1.08rem;
}
.services ul li span {
  font-weight: bold;
  color: var(--retro-red);
  font-size: 1.14rem;
  background: #ffd47044;
  padding: 2px 10px;
  border-radius: 10px;
  display: inline-block;
}
.services ul li a {
  align-self: flex-start;
  margin-top: 8px;
  color: var(--text-light);
  background: var(--primary);
  padding: 7px 24px;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s, color 0.17s;
  box-shadow: 0 2px 9px #14285017;
  border: 2px solid var(--retro-yellow);
}
.services ul li a:hover {
  background: var(--retro-yellow);
  color: var(--primary);
  border: 2px solid var(--retro-blue);
  transform: translateY(-2px) scale(1.03);
}
.services ul li:hover {
  box-shadow: 0 10px 28px #b8943d29;
  border: 2.5px solid var(--retro-orange);
  transform: translateY(-4px) scale(1.02);
}

@media (max-width:900px) {
  .services ul {
    flex-direction: column;
    gap: 20px;
  }
  .services ul li {
    min-width: unset;
    width: 100%;
  }
}

/* ---------------------------------
   TESTIMONIALS
---------------------------------- */
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonials h2 {
  margin-bottom: 8px;
}
.testimonial-card {
  margin-bottom: 16px;
  max-width: 710px;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: italic;
  color: #331c09;
  box-shadow: 0 1px 16px #fed0b7a3;
  background: #fff3e8;
  border: 2px dashed var(--retro-orange);
  font-size: 1.13rem;
}
.testimonial-card p {
  color: #482c1c;
  margin-right: 18px;
}
.testimonial-card span {
  font-weight: bold;
  color: var(--retro-blue);
  background: #e9f3fc;
  border-radius: 8px;
  font-style: normal;
  padding: 2px 10px 1px;
  margin-left: 12px;
  font-size: 0.98rem;
}

/* Correction: ensure right contrast for text */
.testimonials, .testimonial-card, .testimonials .testimonial-card {
  color: #2e2210;
  background: #fff3e8;
}
.testimonial-card p, .testimonial-card span {
  color: #1c1612;
}

@media (max-width:800px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ---------------------------------
   ABOUT & CONTACT
---------------------------------- */
.about, .contact {
  background: #faf6ee;
  border-radius: 15px;
  margin-bottom: 60px;
  box-shadow: 0 8px 24px #b8943d17;
  padding-bottom: 44px;
}
.map-embed {
  background: #eee9db;
  border: 2px dotted #bfbfa7;
  border-radius: 10px;
  padding: 30px 16px;
  margin: 30px 0 0 0;
  color: #abab90;
  text-align: center;
  font-size: 1.05em;
}

/* ---------------------------------
   POLICY PAGES
---------------------------------- */
.policy {
  background: #f7f4ea;
  border-radius: 11px;
  padding: 42px 0 57px 0;
  margin-bottom: 54px;
  box-shadow: 0 9px 30px #c3ad8030;
}

.policy ul {
  padding: 0 0 0 24px;
  margin-bottom: 22px;
}
.policy h1, .policy h2, .policy h3 {
  color: var(--secondary);
}
.policy h2:after {
  background: var(--retro-orange);
}

/* ---------------------------------
   FOOTER
---------------------------------- */
footer {
  background: #2c2c20;
  color: #ffe99f;
  border-top: 3px dotted var(--retro-orange);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 32px 10px 14px 10px;
}
.footer-menu {
  display: flex;
  gap: 32px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-menu a {
  color: var(--retro-yellow);
  font-weight: 600;
  font-size: 1.01rem;
  border-radius: 12px;
  background: transparent;
  padding: 2px 12px;
  transition: background 0.18s, color 0.17s;
  text-decoration: underline dotted 1.5px var(--retro-orange);
}
.footer-menu a:hover {
  background: var(--retro-orange);
  color: #fff7ec;
  text-decoration: underline solid 2.5px #fff7ec;
}
.social-links {
  display: flex;
  gap: 22px;
  margin-bottom: 9px;
  margin-top: 2px;
}
.social-links img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #ffe0a8;
  padding: 3px;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 7px #b8943d28;
}
.social-links img:hover {
  background: var(--retro-orange);
  box-shadow: 0 5px 20px #e2935f44;
}
.branding {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 20px;
}
.branding img {
  width: 48px;
  height: 48px;
}
.branding span {
  font-size: 1rem;
  color: #ffdfa3;
  padding-bottom: 2px;
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
-------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #feedbc;
  border-top: 3px dotted var(--retro-orange);
  box-shadow: 0 -4px 48px #fbc88033;
  padding: 18px 12px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1em;
  width: 100%;
  gap: 16px;
  animation: cookie-banner-in 0.6s;
}
@keyframes cookie-banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: var(--primary);
  margin: 0;
  font-size: 1em;
}
.cookie-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--retro-red);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  padding: 11px 28px;
  font-size: 1rem;
  margin: 0 2px;
  cursor: pointer;
  box-shadow: 0 4px 16px #ba9a7a15;
  transition: background 0.16s, color 0.12s;
  outline: none;
}
.cookie-btn.cookie-settings {
  background: var(--retro-blue);
  color: #fff8e9;
}
.cookie-btn.accept {
  background: var(--retro-green);
  color: #fff8e9;
}
.cookie-btn.reject {
  background: var(--retro-red);
  color: #fff8e9;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--retro-yellow);
  color: var(--primary);
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 10000;
  background: #1f140753;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fade-in 0.34s;
}
@keyframes cookie-modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffbe6;
  border-radius: 18px;
  padding: 44px 32px 28px 32px;
  max-width: 420px;
  min-width: 270px;
  box-shadow: 0 8px 32px #fbc88055;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  text-align: left;
  position: relative;
  animation: cookie-modal-show 0.35s cubic-bezier(.57,.18,.44,1.11);
}
@keyframes cookie-modal-show {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.38rem;
  color: var(--retro-orange);
  margin-bottom: 17px;
}
.cookie-modal-category {
  margin-bottom: 16px;
  background: #ffeaca;
  padding: 8px 8px 8px 18px;
  border-radius: 10px;
  box-shadow: 0 1px 6px #fbc8801e;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: var(--retro-green);
  width: 18px;
  height: 18px;
}
.cookie-modal-category span {
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  font-weight: 600;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal-close {
  position: absolute;
  right: 20px;
  top: 19px;
  font-size: 1.6rem;
  color: var(--retro-red);
  border: 2px solid var(--retro-orange);
  border-radius: 8px;
  background: var(--retro-yellow);
  padding: 0 10px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal-close:hover {
  background: var(--retro-orange);
  color: #fff;
}

/* --------------------------------------------------
   RESPONSIVE STYLES
-------------------------------------------------- */
@media (max-width: 992px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.45rem; }
  .services ul, .features ul, .card-container { flex-direction: column; gap: 18px; }
  .section { padding: 28px 7px; margin-bottom: 38px; }
  .about, .contact, .policy { padding-left: 5px; padding-right: 5px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.22rem; }
  h2 { font-size: 1.12rem; padding-bottom: 6px; }
  .hero { padding: 20px 0 12px 0; margin-bottom: 20px; }
  .section { padding: 18px 4px; margin-bottom: 24px; }
  .content-wrapper, .text-section, .card { padding: 0; }
  .about, .contact, .policy { border-radius: 7px; }
  .branding { flex-direction: column; gap: 0; }
  .map-embed { padding: 18px 2px; font-size: .99em; }
  .footer-menu { gap: 14px; }
  .social-links { gap: 13px; }
  .testimonial-card, .services ul li, .features ul li, .card { min-width: unset; width: 100%; }
  .text-image-section { flex-direction: column; gap: 14px; }
  .content-grid { flex-direction: column; gap: 10px; }
}

/* --------------------------------
   THANK YOU PAGE
---------------------------------*/
.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fcfaf6;
  border-radius: 16px;
  min-height: 60vh;
  padding-top: 32px;
}
.thank-you h1 {
  color: var(--retro-green);
  text-shadow: 1px 2px 0 #ffd47088;
}

/* ---------------------------------
   ACCESSIBILITY FOCUS
---------------------------------- */
a:focus, button:focus, .cta-button:focus {
  outline: 2px dashed var(--retro-blue);
  outline-offset: 3px;
  z-index: 1;
}

/* --------------------------------------------------
   MICRO INTERACTIONS & EFFECTS
-------------------------------------------------- */
button, .cta-button, .main-nav a, .services ul li a, .footer-menu a, .cookie-btn {
  transition: background 0.18s, color 0.18s, border 0.16s, box-shadow 0.17s, transform 0.14s;
}
.card, .services ul li, .testimonial-card, .features ul li {
  transition: box-shadow 0.18s, border 0.17s, background 0.13s, transform 0.18s;
}

/* --------------------------------
   ENSURE SPACING SEPARATION
---------------------------------*/
.section, .about, .contact, .policy, .features, .services {
  margin-bottom: 60px;
}
.card, .testimonial-card, .feature-item, .services ul li {
  margin-bottom: 20px;
}
.card-container, .features ul, .services ul, .content-grid { gap: 20px; }
.text-image-section { gap: 30px; }

/* --------------------------------
   PREVENT GRID, COLUMNS, ABSOLUTE
---------------------------------*/
/* NO grid/columns/break-inside used 
   Only flexbox and justified with gap, margin, and padding. 
   No absolute positioning of content-cards or blocks. 
*/
