/* === 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, menu, 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #FBF6E3;
  color: #163267;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a { color: #163267; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #E6834A; }
ul, ol, menu { list-style: none; }
button, input, select, textarea {
  font: inherit; color: inherit;
  border: none; outline: none;
  background: none;
}
button { cursor: pointer; }

/* === Typography (Vintage Retro-Style) === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  text-transform: uppercase;
  color: #163267;
  letter-spacing: 0.07em;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1rem; }
p, li, blockquote, dl, dd {
  font-family: 'Roboto', Arial, sans-serif;
  color: #2E2330;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
blockquote {
  font-family: 'Montserrat', serif;
  font-size: 1.2rem;
  font-style: italic;
  margin: 0; padding: 0;
}
.rating { font-size: 1.25rem; font-family: 'Montserrat', serif; color: #FFB400; margin-top: 10px; }
.privacy-note { font-size: 0.93rem; color: #6F4E37; margin-top: 10px; }

/* === Vintage Colors & Patterns === */
:root {
  --primary: #163267;
  --secondary: #F2B807;
  --accent: #E5E5E5;
  --neutral-bg: #FBF6E3;
  --retro-coral: #E6834A;
  --retro-mint: #9ED6A3;
  --retro-brown: #6F4E37;
  --retro-red: #D94724;
  --retro-navy: #183059;
  --retro-green: #5D885B;
  --overlay: rgba(22,50,103,0.93);
}

body {
  background: var(--neutral-bg);
}

/* === Vintage Borders & Patterns === */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  background: repeating-linear-gradient(135deg, #F2B807 0 3px, #FBF6E3 3px 12px);
  box-shadow: 0 4px 26px 0 rgba(22, 50, 103, 0.08), 0 0.5px 2px 0 rgba(111, 78, 55, 0.09);
  position: relative;
}
@media (max-width: 768px) {
  .section, section { padding: 24px 8px; margin-bottom: 36px; }
}

/* -- Containers -- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}
.content-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* === Header & Navigation === */
header {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 3px 12px rgba(34,30,26,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 99;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0.5rem 1.5rem;
  position: relative;
  min-height: 70px;
}
header nav > a img {
  width: 42px;
  height: 42px;
  margin-right: 22px;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav ul li a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 24px;
  transition: background 0.2s, color 0.2s;
}
header nav ul li a:hover, header nav ul li a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cta-primary {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  padding: 9px 25px;
  border-radius: 34px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 3px 16px rgba(242,184,7,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.18s;
  letter-spacing: 0.07em;
  display: inline-block;
  margin-left: 22px;
  border: 2px solid var(--primary);
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--retro-coral);
  color: #fff !important;
  box-shadow: 0 4px 20px 0 rgba(230,131,74,0.18);
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 1024px) {
  header nav ul { gap: 10px; }
  .cta-primary { margin-left: 10px; padding: 7px 16px; font-size: 0.99rem; }
}

/* -- Mobile Navigation -- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 18px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 2rem;
  z-index: 199;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 12px rgba(22,50,103,0.14);
  transition: background 0.15s, color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--secondary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: var(--overlay);
  color: #fff;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0; top: 0;
  z-index: 300;
  transform: translateX(-110vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.66,.01,.3,1.01), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--secondary);
  background: transparent;
  margin: 24px 0 0 18px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  width: 42px; height: 42px;
  align-self: flex-end;
  transition: background 0.15s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 42px;
  width: 100%;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.26rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 8px 9px 0;
  border-radius: 6px;
  margin-bottom: 5px;
  text-transform: uppercase;
  transition: background 0.15s, color 0.18s;
  min-width: 150px;
  min-height: 44px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
@media (max-width: 930px) {
  header nav ul, header nav .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 931px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* === Hero Section === */
.hero {
  background: radial-gradient(circle at 60% 40%, #F2B807 24%, #FBF6E3 80%);
  box-shadow: 0 4px 28px 0 rgba(242,184,7,0.08);
  margin-bottom: 45px;
  padding: 52px 0 32px 0;
  border-radius: 0 0 60px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero .content-wrapper h1 {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.hero .content-wrapper p {
  color: #322c1f;
  opacity: 0.98;
  font-size: 1.07rem;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 10px 0;
    border-radius: 0 0 32px 0;
  }
  .hero .content-wrapper h1 { font-size: 2rem; }
}

/* === Feature Grid (Highlights on Home) === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFFBEA;
  border: 2.5px dashed var(--secondary);
  border-radius: 21px;
  box-shadow: 0 2px 12px rgba(242,184,7,.11);
  padding: 24px 22px 18px 22px;
  flex: 1 1 215px;
  min-width: 205px;
  max-width: 250px;
  transition: transform 0.18s, box-shadow 0.23s;
  margin-bottom: 20px;
}
.feature img {
  width: 44px; height: 44px; margin-bottom: 16px;
}
.feature:hover {
  transform: translateY(-4px) scale(1.04) rotate(-2deg);
  box-shadow: 0 6px 22px rgba(111,78,55,.16);
  border-color: var(--retro-coral);
}

@media (max-width: 930px) {
  .feature-grid {
    flex-direction: column;
    gap: 21px;
  }
  .feature {
    max-width: unset;
    width: 100%;
    align-items: flex-start;
    flex: 1 1 100%;
  }
}

/* === Service List / Cards === */
.service-list, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin: 18px 0;
}
.service {
  background: #FFF8F4;
  border-radius: 17px;
  border: 2.5px solid var(--accent);
  box-shadow: 0 2px 7px rgba(22,50,103,0.06);
  padding: 16px 18px 14px 20px;
  min-width: 200px;
  max-width: 265px;
  flex: 1 1 215px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: box-shadow 0.18s, border 0.18s, background 0.16s;
}
.service strong {
  color: var(--retro-red);
  font-size: 1.23em;
}
.service:hover {
  border-color: var(--secondary);
  background: #FDF3D7;
  box-shadow: 0 4px 18px rgba(242,184,7,0.09);
}
@media (max-width: 930px) {
  .service-list, .services-grid {
    flex-direction: column;
    gap: 18px;
  }
  .service {
    width: 100%;
    max-width: unset;
  }
}

/* === Cards, Card Containers (flex) === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.card {
  background: var(--accent);
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(22,50,103,.07);
  overflow: hidden;
  position: relative;
  padding: 18px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.17s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 7px 22px rgba(246,186,72,0.14), 0 2px 8px rgba(22,50,103,.07);
  transform: translateY(-3px) scale(1.03);
}

/* === Flex Content Grids === */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 25px;
}
.content-grid > * {
  flex: 1 1 340px;
}

/* === Text and Image Flex-Sections === */
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
}
.text-section { margin-bottom: 18px; }

/* === Testimonial Card === */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 19px;
  background: #FDF7E2;
  box-shadow: 0 3px 12px rgba(242,184,7,.07), 0 0.5px 2px 0 rgba(111, 78, 55, 0.08);
  color: #2E2330;
  margin-bottom: 22px;
  position: relative;
  min-width: 220px;
  transition: box-shadow 0.17s, background 0.16s;
}
.testimonial-card blockquote {
  color: #2E2330;
  margin: 0;   /* override margin from parent */
}
.testimonial-card blockquote span {
  display: block;
  font-size: 0.96em;
  font-style: normal;
  font-family: 'Roboto', sans-serif;
  margin-top: 10px;
  color: var(--retro-brown);
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(230,131,74,0.10), 0 4px 14px rgba(22,50,103,0.09);
  background: #FFFBEA;
}

/* -- Review/Text Card Readability -- */
.testimonial-card, .testimonial-card blockquote {
  background: #FDF7E2;
  color: #2E2330;
  font-weight: 500;
}

/* === Features/List === */
.features, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 29px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #EEF9EA;
  border-radius: 9px;
  font-size: 1.04rem;
  color: #2E2330;
  margin-bottom: 20px;
  padding: 17px 18px;
  border-left: 4px solid var(--retro-green);
}

/* === Buttons & Microinteractions === */
button,
.cta-primary,
.mobile-menu-close,
.cookie-btn,
.cookie-banner button {
  transition: background 0.18s, color 0.17s, transform 0.12s, box-shadow 0.14s;
}

.button-secondary, .cookie-btn {
  background: var(--primary);
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 24px;
  padding: 8px 18px;
  margin-right: 11px;
  border: 2px solid var(--primary);
  font-weight: 600;
}
.button-secondary:hover, .cookie-btn:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* === FAQ (DL/DT/DD) === */
.faq dl { margin: 0 0 15px 0; }
.faq dt {
  font-weight: 700;
  font-size: 1.08rem;
  padding: 9px 0 2px 0;
  color: var(--primary);
  text-transform: uppercase;
}
.faq dd {
  margin: 0 0 9px 21px;
  color: #3a2317;
  font-size: 1rem;
}

/* === Legal/Privacy/Text Sections === */
.legal {
  background: #FFFBE8;
  border-radius: 14px;
  box-shadow: 0 2px 7px rgba(242,184,7,0.07);
  padding: 40px 24px;
  margin-bottom: 60px;
}

/* === Update Alert Block === */
.update-alert {
  background: var(--retro-red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 12px 18px;
  border-radius: 11px;
  margin-bottom: 14px;
  font-weight: 600;
  box-shadow: 0 1.5px 8px rgba(217,71,36,0.17);
}

/* === Forms, Inputs (Contact) === */
input, textarea, select {
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 10px;
  box-shadow: none;
  font-size: 1rem;
  padding: 10px 13px;
  width: 100%;
  margin-bottom: 18px;
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  outline: none;
}

/* === Cards: Membership Options, Pricing === */
.membership-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.membership-options > div {
  background: #FFFCF0;
  border: 2px solid var(--retro-mint);
  border-radius: 13px;
  padding: 17px 24px;
  flex: 1 1 230px;
  min-width: 220px;
  margin-bottom: 20px;
  box-shadow: 0 1px 7px rgba(158,214,163,0.09);
  transition: border 0.17s, box-shadow 0.15s;
}
.membership-options > div:hover {
  border-color: var(--retro-red);
  box-shadow: 0 4px 16px rgba(217,71,36,0.09);
}
@media (max-width: 900px) {
  .membership-options { flex-direction: column; }
  .membership-options > div { width: 100%; }
}

/* === Footer === */
footer {
  background: var(--primary);
  color: #fff;
  padding: 32px 0 16px 0;
  border-radius: 45px 0 0 0;
  box-shadow: 0 -3px 18px 0 rgba(22, 50, 103, 0.05);
  text-align: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 17px;
  margin-bottom: 12px;
}
footer nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
footer p { font-size: 0.97rem; color: #fff; }

/* === Cookie Consent Banner (Fixed) === */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  z-index: 1000;
  background: #FFF8EC;
  color: #2E2330;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 19px 24px 19px 20px;
  box-shadow: 0 -2px 22px rgba(242,184,7,0.19);
  font-size: 1rem;
  border-top: 3.5px solid var(--secondary);
  transition: transform 0.3s ease, opacity 0.3s;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 13px 6px 13px 7px;
    font-size: 0.97rem;
  }
}
.cookie-banner .cookie-btn {
  margin-top: 0;
  margin-right: 8px;
  padding: 7px 16px;
  border-radius: 24px;
  background: var(--primary);
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  border: 2px solid var(--primary);
  font-weight: 600;
  transition: background 0.15s, color 0.14s, border 0.14s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: var(--retro-coral);
  color: #fff;
  border: 2px solid var(--retro-coral);
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: var(--retro-red);
  color: #fff;
  border: 2px solid var(--retro-red);
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: var(--retro-green);
  border: 2px solid var(--retro-green);
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: var(--retro-green);
  color: #fff;
}

/* -- Cookie Modal -- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,50,103,0.85);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #FFFBEA;
  border-radius: 22px;
  max-width: 460px;
  width: 96vw;
  padding: 35px 26px 29px 26px;
  box-shadow: 0 8px 44px rgba(22,50,103,0.18);
  display: flex;
  flex-direction: column;
  gap: 19px;
  color: #2e2330;
  font-size: 1.04rem;
  z-index: 2100;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.cookie-modal .pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 13px;
}
.cookie-modal .pref-row label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-right: 7px;
}
.cookie-modal .toggle-switch {
  position: relative;
  display: inline-block;
  width: 39px;
  height: 22px;
}
.cookie-modal .toggle-switch input[type='checkbox'] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .toggle-slider {
  position: absolute;
  background: var(--accent);
  border-radius: 12px;
  width: 100%; height: 100%;
  transition: background 0.14s;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
  background: var(--retro-green);
}
.cookie-modal .toggle-slider:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(111,78,55,.13);
  transition: left 0.18s;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider:after {
  left: 20px;
}

.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: var(--secondary);
  color: var(--primary);
  padding: 8px 17px;
  border-radius: 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: 2px solid var(--secondary);
  font-size: 1rem;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--retro-coral);
  color: #fff;
  border-color: var(--retro-coral);
}
.cookie-modal .cookie-modal-close {
  background: none;
  color: var(--primary);
  border: none;
  font-size: 1.7rem;
  position: absolute;
  top: 15px;
  right: 21px;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .cookie-modal-close:hover { color: var(--retro-red); }

/* HIDE COOKIE BANNER/MODAL WHEN NEEDED (handled in JS) */
.cookie-banner.hidden { transform: translateY(110%); opacity: 0; pointer-events: none; }
.cookie-modal-overlay.closed { opacity: 0; pointer-events: none; }

/* === Responsive Design (Mobile First) === */
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .content-wrapper { padding-left: 2px; padding-right: 2px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.28rem; }
  .hero { padding: 24px 0 7px 0; }
  .section, section { padding: 18px 3px; margin-bottom: 28px; }
  .faq dl, .features, .feature-list, .membership-options {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card, .feature, .service, .card {
    min-width: 94vw;
    max-width: unset;
    padding: 14px 8px;
  }
}

/* === Spacing and Alignment Patterns === */
.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; }

/* === Utility Classes === */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

/* === Retro/Nostalgic Decorations === */
.section::before {
  content: '';
  display: block;
  width: 60px;
  height: 7px;
  background: linear-gradient(90deg, var(--secondary), var(--retro-coral), var(--retro-mint));
  border-radius: 8px;
  margin-bottom: 16px;
}

.section:nth-child(2n)::after {
  content: '';
  display: block;
  width: 32px;
  height: 7px;
  background: linear-gradient(90deg, var(--retro-red), var(--retro-mint));
  border-radius: 7px;
  margin-top: 10px;
}

/* ====== END ====== */
