/* RESET & BASE STYLES */
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #203A43;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
*, *:before, *:after { box-sizing: inherit; }
img { max-width: 100%; display: block; }
a { color: #203A43; text-decoration: none; transition: color 0.2s; }
ul, ol { padding-left: 24px; }
strong, b { font-weight: bold; }
em, i { font-style: italic; }
:focus { outline: 2px solid #B89559; outline-offset: 2px; }

/* FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 600; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; }
p, ul, ol, blockquote { margin-bottom: 16px; }

/* BRAND COLOR PALETTE - PLAYFUL ACCENTS */
:root {
  --lucid-primary: #203A43;
  --lucid-secondary: #FFFFFF;
  --lucid-accent: #A17B31;
  --lucid-accent2: #FFD65A;
  --lucid-playful1: #FF7EC7;
  --lucid-playful2: #53E7CF;
  --lucid-playful3: #47A8F5;
  --lucid-muted: #F6F8FA;
  --lucid-card-shadow: rgba(32, 58, 67, 0.12);
  --lucid-contrast: #2e2e2e;
}

/* CONTAINERS & SECTIONS */
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--lucid-muted);
  border-radius: 32px;
  box-shadow: 0 6px 24px var(--lucid-card-shadow);
}

/* NAVIGATION */
header {
  background: var(--lucid-secondary);
  box-shadow: 0 4px 20px 0 rgba(32,58,67,.08);
  padding: 0 0 0 0;
  position: relative;
  z-index: 100;
}
.desktop-nav {
  height: 72px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  padding: 0 20px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.desktop-nav img {
  height: 43px;
  margin-right: 20px;
  display: block;
}
.desktop-nav a {
  font-size: 1.1rem;
  color: var(--lucid-primary);
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 24px;
  background: none;
  transition: background 0.18s, color 0.18s, transform 0.15s;
  position: relative;
}
.desktop-nav a:hover,
.desktop-nav a:focus {
  background: var(--lucid-accent2);
  color: var(--lucid-primary);
  transform: translateY(-2px) scale(1.08) rotate(-2deg);
}
.desktop-nav .cta-primary {
  background-color: var(--lucid-accent);
  color: #fff;
  font-size: 1.13rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 99px;
  box-shadow: 0 2px 10px 0 rgba(32,58,67,0.06);
  margin-left: auto;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: var(--lucid-playful2);
  color: var(--lucid-primary);
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  position: absolute;
  right: 24px;
  top: 14px;
  cursor: pointer;
  z-index: 101;
  box-shadow: 0 2px 8px 0 rgba(83,231,207,.16);
  transition: background .22s;
}
.mobile-menu-toggle:active { background: var(--lucid-accent2); }
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,58,67,0.95);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(.83,.13,0,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--lucid-accent2);
  color: var(--lucid-primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  margin: 18px 28px 10px 0;
  cursor: pointer;
  align-self: flex-end;
  transition: background 0.18s;
  z-index: 9999;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--lucid-playful1);
  color: var(--lucid-primary);
}
.mobile-nav {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
  padding: 0 40px;
}
.mobile-nav a {
  font-size: 1.45rem;
  color: #fff;
  padding: 16px 6px 16px 0;
  font-weight: 700;
  letter-spacing: 0.025em;
  background: none;
  border-radius: 0 32px 32px 0;
  width: fit-content;
  transition: background 0.16s, color 0.16s, padding 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--lucid-playful2);
  color: #203A43;
  padding-left: 18px;
}
@media (max-width: 1024px) {
  .desktop-nav { display: none !important; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
  .desktop-nav { display: flex !important; }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, var(--lucid-accent2) 60%, var(--lucid-playful2) 100%);
  color: var(--lucid-primary);
  min-height: 340px;
  padding: 54px 0 48px 0;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 0 0 45px 45px;
  box-shadow: 0 22px 35px -10px rgba(161,123,49,0.07);
  overflow: hidden;
}
.hero .container { justify-content: center; }
.hero h1 {
  font-size: 2.5rem;
  color: var(--lucid-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  text-shadow: 2px 3px 0 #fff4, 0 1px 25px #53e7cf33;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.hero h2 {
  font-size: 1.5rem;
  color: var(--lucid-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero p {
  color: var(--lucid-primary);
  font-size: 1.08rem;
  margin-bottom: 28px;
}
.hero .cta-primary {
  font-size: 1.18rem;
  padding: 14px 40px;
  border-radius: 99px 32px 99px 32px;
  font-weight: 700;
  margin-top: 4px;
  transform: scale(1.05);
  box-shadow: 0 12px 26px 0 rgba(161,123,49,.08);
  background: linear-gradient(98deg, var(--lucid-accent) 60%, var(--lucid-playful1) 100%);
  color: #fff;
}
.hero .cta-primary:hover, .hero .cta-primary:focus {
  background: linear-gradient(70deg, var(--lucid-playful1), var(--lucid-accent2) 90%);
  color: var(--lucid-primary);
  box-shadow: 0 7px 32px -7px var(--lucid-playful3);
  transform: scale(1.10) rotate(-2deg);
}

/* BUTTONS & CALLS TO ACTION */
.cta-primary {
  display: inline-block;
  background: var(--lucid-accent);
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 99px;
  box-shadow: 0 3px 15px 0 var(--lucid-card-shadow);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform .15s, box-shadow .12s;
  margin-top: 10px;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--lucid-playful3);
  color: #fff;
  transform: translateY(-2px) scale(1.07) rotate(-2deg);
  box-shadow: 0 8px 20px -5px var(--lucid-playful3);
}

button, .btn {
  background: var(--lucid-playful2);
  color: var(--lucid-primary);
  border: none;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 26px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, box-shadow .17s, color 0.17s;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: var(--lucid-playful1);
  color: var(--lucid-primary);
  box-shadow: 0 5px 15px -3px var(--lucid-playful2);
}

/* FEATURES & CARDS */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 3px 20px 0 var(--lucid-card-shadow);
  padding: 28px 24px 22px 24px;
  min-width: 0;
  flex: 1 1 240px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.19s, transform 0.15s;
}
.feature-item img {
  width: 48px; height: 48px;
  background: var(--lucid-playful2);
  border-radius: 50%;
  transition: transform .19s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 10px 30px 0 var(--lucid-playful3);
  transform: translateY(-6px) scale(1.03) rotate(-1.8deg);
}
.feature-item:hover img { transform: scale(1.13) rotate(8deg); }

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 26px;
  padding: 28px 26px;
  box-shadow: 0 3px 18px 0 var(--lucid-card-shadow);
  position: relative;
  transition: box-shadow .19s, transform .18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 14px 35px 0 var(--lucid-playful1);
  transform: rotate(-2deg) scale(1.025);
}

.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;
}

@media (max-width: 768px) {
  .features-grid, .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .card {
    min-width: 0;
    width: 100%;
  }
}

/* TESTIMONIALS */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fffbe9;
  color: var(--lucid-contrast);
  border-radius: 26px;
  padding: 20px 28px 20px 30px;
  box-shadow: 0 3px 12px 0 var(--lucid-card-shadow);
  flex: 1 1 250px;
  min-width: 0;
}
.testimonial-card blockquote {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--lucid-primary);
  font-style: italic;
  margin-bottom: 6px;
  position: relative;
}
.testimonial-card blockquote:before {
  content: '“';
  color: var(--lucid-accent);
  font-size: 2.2rem;
  position: absolute;
  left: -24px;
  top: -9px;
}
.testimonial-card p {
  margin-bottom: 0;
  color: var(--lucid-contrast);
  opacity: 0.90;
  font-size: 1.05rem;
}

/* SERVICES, TEAM, EVENTS, FAQ & VARIA */
.services-list,
.team-list,
.events-list,
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-item, .team-member, .event-item, .faq-item {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 3px 15px 0 var(--lucid-card-shadow);
  padding: 22px 20px 16px 20px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .13s;
  position: relative;
}
.service-item:hover, .team-member:hover, .event-item:hover, .faq-item:hover {
  box-shadow: 0 9px 33px 0 var(--lucid-playful3);
  transform: rotate(-2deg) scale(1.017);
}
.service-item .price, .event-item strong { font-size: 1.13rem; color: var(--lucid-accent); }

.callout {
  background: var(--lucid-playful2);
  color: var(--lucid-primary);
  border-radius: 18px;
  padding: 16px 20px;
  font-weight: 700;
  box-shadow: 0 1px 9px 0 rgba(83,231,207,0.11);
  margin: 18px 0 0 0;
}
.policy-section, .gdpr-section, .cookie-section, .terms-section {
  background: var(--lucid-muted);
  border-radius: 20px;
  padding: 20px 24px 16px 24px;
  box-shadow: 0 1px 8px 0 var(--lucid-card-shadow);
  margin-bottom: 20px;
}
.text-section ul, .policy-section ul, .gdpr-section ul, .cookie-section ul, .terms-section ul {
  margin: 10px 0 10px 22px;
  list-style: disc;
}
.text-section ol { margin: 10px 0 10px 22px; }

/* FAQ */
.faq-list { gap: 24px; }
.faq-item h3 { font-size: 1.13rem; margin-bottom: 7px; }

/* FOOTER STYLES */
footer {
  background: var(--lucid-primary);
  color: #fff;
  margin-top: 70px;
  width: 100%;
  padding: 32px 0 16px 0;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -3px 30px -10px var(--lucid-card-shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  font-size: 0.98rem;
  min-height: 100px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #fff;
  opacity: 0.94;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 0.18s, color 0.13s, opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus { background: var(--lucid-accent2); color: var(--lucid-primary); opacity: 1; }
footer p { color: #fff; opacity: .65; margin-top: 8px; }

/* COOKIE CONSENT BANNER (BOTTOM) */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(87deg, var(--lucid-accent2) 70%, var(--lucid-playful2));
  color: var(--lucid-primary);
  width: 100vw;
  max-width: 100vw;
  z-index: 5000;
  box-shadow: 0 -4px 32px -8px rgba(32,58,67,.12);
  padding: 22px 16px 16px 16px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 16px 28px;
  min-height: 70px;
  transition: transform 0.28s cubic-bezier(.87,.28,0,1), opacity 0.18s;
}
.cookie-banner.hide { transform: translateY(130%); opacity: 0; pointer-events: none; }
.cookie-banner__text { flex: 2 1 230px; font-size: 1rem; }
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  border-radius: 99px;
  padding: 9px 30px;
  font-weight: 700;
  margin: 0;
  border: none;
  background: var(--lucid-accent);
  color: #fff;
  box-shadow: 0 2px 10px 0 var(--lucid-card-shadow);
  transition: background 0.16s, color 0.11s, transform 0.13s;
  cursor: pointer;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--lucid-playful3);
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: var(--lucid-playful2);
  color: var(--lucid-primary);
  border: 2px solid var(--lucid-accent);
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: var(--lucid-playful1);
  color: var(--lucid-primary);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(32,58,67,0.65);
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  min-width: 310px;
  max-width: 95vw;
  max-height: 90vh;
  padding: 24px 20px 18px 28px;
  box-shadow: 0 8px 60px 0 var(--lucid-card-shadow);
  color: var(--lucid-primary);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.05rem;
  position: relative;
  animation: popIn 0.4s cubic-bezier(.8,.55,0,1);
}
@keyframes popIn {
  0% { transform: scale(0.88) translateY(50px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 { font-size: 1.38rem; margin-bottom: 10px; }
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 9px 0;
}
.cookie-modal-category label { font-size: 1.08rem; }
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 40px; height: 24px;
  background: var(--lucid-muted);
  border-radius: 14px;
  border: 2px solid var(--lucid-accent2);
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background .22s;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--lucid-accent2);
}
.cookie-modal .cookie-toggle:after {
  content: '';
  width: 18px; height: 18px;
  background: var(--lucid-playful2);
  border-radius: 50%;
  position: absolute;
  top: 1.5px;
  left: 2.5px;
  transition: left 0.16s, background 0.19s;
}
.cookie-modal .cookie-toggle:checked:after {
  left: 19px;
  background: var(--lucid-playful1);
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal button {
  border-radius: 99px;
  background: var(--lucid-playful2);
  color: var(--lucid-primary);
  border: none;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 30px;
  box-shadow: 0 2px 8px 0 var(--lucid-card-shadow);
  transition: background 0.16s, color 0.16s;
}
.cookie-modal button.accept {
  background: var(--lucid-accent);
  color: #fff;
}
.cookie-modal button.accept:hover, .cookie-modal button.accept:focus {
  background: var(--lucid-playful3);
  color: #fff;
}
.cookie-modal .close-modal {
  background: transparent;
  color: var(--lucid-primary);
  font-size: 2rem;
  border: none;
  position: absolute;
  top: 11px; right: 18px;
  cursor: pointer;
  transition: color 0.16s;
  border-radius: 99px;
  width: 40px; height: 40px;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--lucid-accent);
  background: var(--lucid-muted);
}

@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 18px 7vw; gap: 13px 0; }
  .cookie-banner__text { font-size: .95rem; }
  .cookie-modal { padding: 17px 8vw 12px 8vw; }
}

/* ANIMATION & MICRO-INTERACTIONS */
.section, .feature-item, .card, .testimonial-card, .team-member, .event-item, .faq-item, .service-item {
  transition: box-shadow .15s, transform 0.13s, background 0.12s;
}
.cta-primary, .btn, button, a {
  transition: background 0.16s, color 0.18s, transform 0.13s;
}
@media (hover: hover) {
  .feature-item:active, .card:active, .cta-primary:active {
    transform: scale(0.97) rotate(1deg);
  }
}

/* SPACING - UTILITY */
.mb-2 { margin-bottom: 12px !important; }
.mb-3 { margin-bottom: 18px !important; }
.mb-4 { margin-bottom: 24px !important; }
.mt-2 { margin-top: 12px !important; }
.mt-4 { margin-top: 24px !important; }
.gap-2 { gap: 12px !important; }
.gap-3 { gap: 18px !important; }
.gap-4 { gap: 24px !important; }

/* RESPONSIVE TYPOGRAPHY (NO CLAMP) */
@media (max-width: 850px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  .hero h1 { font-size: 2rem; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.07rem; }
  .hero h1 { font-size: 1.45rem; }
  .section { padding: 28px 5vw; }
}

/* LISTS & MARKERS (dynamic/playful style) */
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
ul li::marker {
  color: var(--lucid-accent);
  font-size: 1.21em;
}
ol li { margin-bottom: 9px; }


/* Forms (Contact, Cookie) - when added in future */
input, select, textarea {
  border: 1.5px solid var(--lucid-playful2);
  border-radius: 12px;
  font-size: 1rem;
  padding: 8px 12px;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 14px;
  transition: border 0.14s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--lucid-accent);
}

/* Accessibility: High Contrast for review/testimonial text */
.testimonials, .testimonial-card {
  color: #1A1A1A;
  background: #fffbe9;
}

/* Miscellaneous */
::-webkit-scrollbar { width: 8px; background: #f6f8fa; }
::-webkit-scrollbar-thumb { background: var(--lucid-accent2); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--lucid-accent); }

/* Playful Microdots as background accent */
body::after {
  content: '';
  display: block;
  position: fixed;
  bottom: 0; right: 0;
  width: 150px; height: 110px;
  background: url('data:image/svg+xml;utf8,<svg width="120" height="70" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="8" fill="%23A17B31" fill-opacity="0.13"/><circle cx="60" cy="55" r="10" fill="%2353E7CF" fill-opacity="0.14"/><circle cx="100" cy="20" r="5" fill="%23FF7EC7" fill-opacity="0.19"/></svg>') no-repeat;
  pointer-events: none;
  z-index: 10;
}

/* Overrides for mobile improvements */
@media (max-width: 500px) {
  .footer-nav { gap: 12px; }
  .content-wrapper { gap: 16px; }
}

/* End of CSS */
