/* 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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FFE9D6;
  color: #223359;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

a {
  color: #223359;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #07A08A;
  text-decoration: underline;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
ul {
  list-style: square;
}

strong {
  font-weight: bold;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  color: #2c2d34;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(34,51,89,0.06);
}
h1 { font-size: 2.75rem; line-height: 1.2; }
h2 { font-size: 2rem; line-height: 1.3; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.93rem; }

p, li, dd {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #223359;
  margin-bottom: 14px;
}

blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #2c2d34;
  background: #FFE9D6;
  border-left: 6px solid #e49c5f;
  padding: 18px 24px;
  font-style: italic;
  margin-bottom: 12px;
}

hr { border: 0; border-top: 1px dotted #B6B095; margin: 32px 0; }

/* VINTAGE RETRO COLORS PALETTE */
:root {
  --primary: #223359;
  --secondary: #07A08A;
  --accent: #FFE9D6;
  --vintage-orange: #e49c5f;
  --vintage-mustard: #FFE55C;
  --vintage-green: #87A878;
  --vintage-brown: #9e7c5b;
  --vintage-red: #d65a31;
  --shadow: rgba(34,51,89,0.1);
  --white: #fff;
  --card-bg: #fffaf2;
}

/* --- BASIC LAYOUT & CONSTRAINTS --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 3px 22px -6px var(--shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border: 2px solid #d4b898;
  border-radius: 14px;
  box-shadow: 0 2px 12px -2px var(--shadow);
  transition: box-shadow 0.3s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px -2px rgba(34,51,89,0.15);
  transform: translateY(-6px) scale(1.01);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 22px;
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 2px 16px -5px var(--shadow);
  border: 2px solid #e49c5f;
  position: relative;
  transition: box-shadow 0.25s, border-color 0.25s;
  min-width: 200px;
  max-width: 580px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 28px -2px rgba(34,51,89,0.16);
  border-color: #d65a31;
}
.testimonial-meta {
  font-size: 0.97rem;
  letter-spacing: 1.1px;
  color: #55607E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.testimonials .stars {
  color: #e49c5f;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 7px;
  letter-spacing: 2px;
}

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

.quick-links ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 7px;
}
.quick-links a {
  background: var(--vintage-orange);
  color: var(--primary);
  padding: 7px 14px;
  border-radius: 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  margin-right: 3px;
  transition: background 0.2s, color 0.2s;
}
.quick-links a:hover {
  background: var(--secondary);
  color: var(--white);
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.tips-grid > div {
  flex: 1 1 200px;
  min-width: 220px;
  background: #fffdf7;
  border-radius: 12px;
  border: 1px solid #fae2c8;
  padding: 20px 15px;
  box-shadow: 0 1px 8px -2px var(--shadow);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 17px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dl, dt, dd {
  font-family: 'Roboto', Arial, sans-serif;
}
dl {
  margin: 18px 0 24px 0;
}
dt {
  font-weight: bold;
  color: #223359;
  margin-top: 14px;
}
dd {
  margin-left: 0;
  color: #3b3b41;
  margin-bottom: 8px;
}

ol {
  list-style: decimal inside;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 6px 30px -12px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 20px;
  gap: 20px;
}
header img {
  max-height: 48px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  padding: 7px 12px;
  border-radius: 6px;
  letter-spacing: 1.1px;
  transition: background 0.25s, color 0.25s;
  background: none;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--white);
}

a.cta.primary {
  background: var(--vintage-orange);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 32px;
  padding: 13px 32px;
  box-shadow: 0 3px 18px -5px var(--shadow);
  letter-spacing: 1px;
  margin-left: 8px;
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.18s;
  cursor: pointer;
}
a.cta.primary:hover, a.cta.primary:focus {
  background: #d65a31;
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
}

a.cta.secondary {
  background: var(--secondary);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 32px;
  padding: 11px 27px;
  margin-left: 8px;
  border: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
a.cta.secondary:hover, a.cta.secondary:focus {
  background: var(--vintage-orange);
  color: var(--primary);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: transparent;
  color: var(--accent);
  border: none;
  cursor: pointer;
  margin-left: 16px;
  z-index: 110;
  transition: color 0.18s, background 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
  background: var(--vintage-orange);
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #FEE3B9EE;
  box-shadow: 0 3px 28px 0 rgba(34,51,89,0.21);
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.77,0.2,0.05,1.0);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px;
  gap: 12px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 1.7rem;
  color: var(--primary);
  background: none;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 12px;
  padding: 7px;
  border-radius: 6px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--vintage-orange);
  color: var(--white);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  background: none;
  padding: 12px 0;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--white);
}

@media (max-width: 1024px) {
  header .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO & CTA SECTION --- */
.hero {
  background: linear-gradient(90deg, #FFE9D6 50%, #e49c5f2e 98%);
  padding: 0;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 44px;
  padding-bottom: 44px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.4rem;
  letter-spacing: 2px;
}
.hero .subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  color: #376375;
  margin-bottom: 18px;
  margin-top: -10px;
}
.cta.section,
section.cta {
  background: linear-gradient(92deg, var(--accent) 44%, #fbe1a63c 100%);
  box-shadow: none;
  border: 2px dotted #e49c5f;
  margin-bottom: 42px;
}

/* --- FEATURES, SERVICES --- */
.features ul, .services ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
}
.features ul li, .services ul li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 0;
}
.features ul li img, .services ul li img {
  min-width: 30px;
  max-width: 34px;
  margin-right: 2px;
}

.features ul li {
  background: none;
  border-radius: 6px;
}

.section, .about, .team, .contact, .legal, .faq, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 3px 22px -6px var(--shadow);
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 48px 0 18px 0;
  font-size: 1rem;
  border-radius: 28px 28px 0 0;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--vintage-orange);
}
address {
  font-style: normal;
  color: #FFFCF1;
  font-size: 0.99rem;
  text-align: center;
  margin-bottom: 13px;
}
footer a {
  color: #FFE9D6;
  text-decoration: underline;
  transition: color 0.15s;
}
footer a:hover, footer a:focus { color: #FFE55C; }
footer p {
  font-size: 0.96rem;
  color: #ffeec6e0;
}

/* --- LEGAL SECTIONS & POLICIES --- */
.legal {
  background: #fffdf6;
  border: 2px solid #e5c99b;
  box-shadow: 0 2px 19px -6px var(--shadow);
}
.legal h1 {
  font-size: 2.2rem;
}
.legal .text-section {
  font-size: 1rem;
  color: #4b4b51;
}
.legal a {
  color: var(--vintage-red);
}
.legal a:hover {
  color: var(--vintage-orange);
}

/* --- THANK YOU PAGE --- */
.thank-you ul {
  margin-top: 16px;
  margin-bottom: 21px;
}

/* --- CONTACT --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 25px;
}
.contact-details img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 7px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
  .footer-nav {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  .main-nav,
  .footer-nav {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
  }
  .content-wrapper, .section, .about, .team, .contact, .legal, .faq, .thank-you {
    padding: 28px 3vw;
    margin-bottom: 40px;
  }
  .tips-grid {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 100vw;
  }
}
@media (max-width: 520px) {
  html{
    font-size: 14px;
  }
  .hero .container {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .section, .about, .team, .contact, .legal, .faq, .thank-you {
    padding: 18px 1vw;
  }
  .card-container {
    gap: 14px;
  }
  .tips-grid > div {
    padding: 13px 7px;
  }
  .footer-nav {
    gap: 7px;
  }
}

/* --- MICRO-INTERACTIONS & EFFECTS --- */
.card, .testimonial-card, .quick-links a, .cta.primary, .cta.secondary, .mobile-menu, .mobile-menu-close {
  transition: box-shadow 0.17s, border-color 0.15s, background 0.14s, color 0.16s, transform 0.13s;
}

/* Subtle Appear Transitions */
.section, .card, .hero, .testimonial-card {
  animation: fadeUp 1s cubic-bezier(.15,.80,.43,1) both;
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: none; }
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffdf3;
  border-top: 2px solid #e49c5f;
  box-shadow: 0 -2px 24px -5px var(--shadow);
  padding: 24px 18px;
  z-index: 1031;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  animation: fadeUp 0.7s cubic-bezier(.19,.93,.37,1.04) both;
}
.cookie-banner .cookie-content {
  flex: 1 1 auto;
  color: #7C614B;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  padding: 10px 27px;
  cursor: pointer;
  box-shadow: 0 2px 8px -3px var(--shadow);
  transition: background 0.16s, color 0.13s, transform 0.16s;
  font-weight: 600;
}
.cookie-banner .cookie-accept {
  background: var(--vintage-orange);
  color: var(--primary);
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: var(--secondary);
  color: var(--white);
}
.cookie-banner .cookie-reject {
  background: var(--vintage-mustard);
  color: var(--primary);
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: var(--vintage-red);
  color: var(--white);
}
.cookie-banner .cookie-settings {
  background: var(--primary);
  color: var(--accent);
  border: 1.5px solid #e49c5f;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--accent);
  color: var(--primary);
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 17px 7px;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    gap: 10px;
  }
  .cookie-banner button {
    width: 100%;
    padding: 9px 0;
  }
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,51,89,0.32);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.4s;
}
@keyframes fadeInOverlay {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.cookie-modal {
  background: var(--card-bg);
  border: 2px solid var(--vintage-orange);
  border-radius: 20px;
  box-shadow: 0 6px 62px -8px var(--shadow);
  padding: 34px 28px 24px 28px;
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeUp 0.6s cubic-bezier(.17,.82,.36,1.08) both;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.45rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1.02rem;
  gap: 13px;
  padding: 10px 0 4px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #7B6344;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 22px;
  height: 22px;
  margin-right: 6px;
}
.cookie-modal .cookie-category-essential {
  color: var(--primary);
  font-weight: 600;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  padding: 9px 20px;
  font-size: 1rem;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 11px;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--primary);
  cursor: pointer;
  padding: 2px 7px;
  border-radius: 6px;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--vintage-orange);
  color: var(--white);
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 12px 8px 18px 8px;
    min-width: 80vw;
  }
}

/* --- VINTAGE & RETRO NOSTALGIC ELEMENTS --- */
.section, .card, .testimonial-card, .footer-nav, .quick-links a, .faq, .thank-you {
  border-radius: 18px 60px 18px 60px/28px 28px 60px 18px;
  border-style: solid;
  border-width: 2.5px;
  border-color: #ead096;
}

h1, h2, h3, h4, h5 {
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: #774321;
  text-shadow: 1px 1px 0 #ffe3c2, 0 3.5px 12.5px #d4b898;
}
h1 {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: 3px;
  background: linear-gradient(90deg,#ffe55c 22%, #e49c5f 70%, #07A08A 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #9e7c5b;
}

/* Retro decor lines for sections */
.section::before, .about::before, .faq::before, .thank-you::before {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg,var(--vintage-red) 20%,var(--vintage-mustard) 60%,var(--vintage-orange) 100%);
  border-radius: 9px;
  margin-bottom: 16px;
  box-shadow: 0 2px 5px -2px var(--shadow);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #fcd499;
  border-radius: 7px;
}
::-webkit-scrollbar-track {
  background: #ffe9d6;
}

/* --- SELECTION --- */
::selection {
  background: #FFE55C;
  color: #223359;
}

/* --- FORMATTING INFORMAL --- */
address {
  font-style: normal;
  font-family: 'Roboto', Arial, sans-serif;
  color: #223359;
}

/* --- DIALOGUE FAQ --- */
.faq dl {
  margin: 12px 0 12px 0;
}
.faq dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  background: #FFE9D6;
  color: #d65a31;
  border-left: 4px solid #07A08A;
  padding: 6px 0 6px 14px;
  border-radius: 5px;
  margin-bottom: 4px;
}
.faq dd {
  margin-bottom: 10px;
  color: #223359;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.99rem;
  margin-left: 9px;
}

/* --- RETRO BUTTONS GENERIC --- */
button, .button, input[type=submit], input[type=button] {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  cursor: pointer;
  background: var(--vintage-orange);
  color: var(--primary);
  border-radius: 30px;
  padding: 13px 32px;
  font-weight: 700;
  font-size: 1.01rem;
  box-shadow: 0 3px 16px -3px var(--shadow);
  transition: background 0.17s, color 0.16s, transform 0.12s;
}
button:hover, button:focus,
input[type=submit]:hover, input[type=button]:focus {
  background: var(--vintage-red);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
}

/* --- NO ABSOLUTE POSITIONING FOR CONTENT (EXCEPT DECORS) --- */
/* Only .cookie-modal-close and retro decorations may use position absolute */

/* --- UTILITY --- */
.mb-20 { margin-bottom: 20px; }
.mt-24 { margin-top: 24px; }
.gap-16 { gap: 16px; }
.rounded { border-radius: 20px !important; }
.text-center { text-align: center; }

/* --- ENSURE SPACING BETWEEN ALL FLEX CHILDREN --- */
.section > *, .about > *, .team > *, .contact > *, .faq > *, .thank-you > * {
  margin-bottom: 20px;
}
.card-container > *, .content-grid > *, .tips-grid > *, .footer-nav > * {
  margin-bottom: 0;
}

/* --- PREVENT OVERLAPPING --- */
* {
  box-sizing: border-box;
}

/* --- AVOID CLAMP --- */

/* --- END CSS --- */
