/* ========================
   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, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.2;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  background: #F2F6FC;
  color: #1b242f;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
button {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
strong { font-weight: 700; }

/* ========================
   FONTS & TYPOGRAPHY
=========================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

:root {
  --primary: #134573;
  --primary-dark: #0d2b45;
  --secondary: #00A86B;
  --secondary-dark: #007c4d;
  --accent: #F2F6FC;
  --text-main: #1b242f;
  --text-light: #fff;
  --shadow: 0 4px 20px rgba(19, 69, 115, 0.08);
  --radius: 18px;
  --radius-sm: 8px;
  --focus: #00A86B;
}

h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.13;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.18;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
}
p, li, .paragraph {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 10px;
}
.subheadline {
  color: var(--secondary);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.5px;
}

/* ================
   CONTAINERS
================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* =========================
   HEADER & MAIN NAVIGATION
========================== */
header {
  width: 100%;
  background: var(--accent);
  box-shadow: 0 2px 10px rgba(19,69,115,0.08);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
.logo img {
  width: 146px;
  height: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.main-nav a {
  color: var(--primary);
  font-size: 1rem;
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s;
  border-radius: 4px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
  background: rgba(0,168,107,0.09);
}
.btn.btn-primary {
  background: var(--primary);
  color: var(--text-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: none;
  box-shadow: var(--shadow);
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  margin-left: 22px;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

.btn.btn-secondary {
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: none;
  box-shadow: var(--shadow);
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* =============
   HERO SECTION
=============== */
.hero {
  background: linear-gradient(98deg, #F2F6FC 70%, #00A86B 140%);
  min-height: 270px;
  padding: 66px 0 36px 0;
  margin-bottom: 60px;
}
.hero .container { flex-direction: column; }
.hero .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  max-width: 660px;
}
.hero h1,
.hero .h1 {
  color: var(--primary);
  margin-bottom: 22px;
}

/* =============
   COMMON SECTIONS
================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.features,
.about,
.services,
.join,
.confirmation,
.steps,
.about-team,
.legal,
.contact,
.cta,
.faq,
.testimonials {
  margin-bottom: 60px;
  padding: 40px 0;
}
.features .container,
.about .container,
.services .container,
.join .container,
.confirmation .container,
.about-team .container, 
.legal .container, 
.contact .container, 
.faq .container,
.cta .container, 
.testimonials .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-grid,
.club-benefits,
.sports-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.feature-item {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 18px 22px 18px;
  flex: 1 1 calc(260px);
  min-width: 200px;
  max-width: 340px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 7px 24px rgba(0,168,107,0.14), var(--shadow);
  transform: translateY(-4px) scale(1.025);
}

/* ================
   TESTIMONIALS SECTION
==================== */
.testimonials .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-list .testimonial-card {
  flex: 1 1 330px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 18px rgba(19, 69, 115, 0.08), var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 26px 22px 26px;
  min-width: 240px;
  margin-bottom: 20px;
  border-left: 6px solid var(--secondary);
}
.testimonial-card p {
  color: var(--text-main);
  font-size: 1.08rem;
  margin-bottom: 8px;
  font-style: italic;
  line-height: 1.4;
}
.testimonial-card strong {
  margin-top: 8px;
  color: var(--primary);
  font-weight: 700;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 4px;
}

/* ================
   CTA SECTIONS
==================== */
.cta .content-wrapper,
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  justify-content: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta .btn,
.confirmation .btn {
  margin-top: 24px;
}

/* ================
   JOIN/CLUB BENEFITS
==================== */
.club-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
}
.club-benefits li {
  background: var(--accent);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  border-left: 3px solid var(--secondary);
}

/* =====================
   CARDS AND CONTENT GRIDS
======================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px;
  min-width: 240px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 32px rgba(0,168,107,0.10), var(--shadow);
  transform: translateY(-2px) scale(1.018);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}

/* =====================
   ADDRESS BLOCKS & MAP
======================= */
.address-block {
  background: var(--accent);
  padding: 20px 16px 16px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.address-block p img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 7px;
}
.map-embed {
  margin: 16px 0 0 0;
  display: flex;
  align-items: center;
}

/* =====================
   FAQ / DETAILS
======================= */
details {
  background: #fff;
  padding: 18px 20px;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.18s;
}
details[open] {
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(0,168,107,0.10), var(--shadow);
}
details summary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.11rem;
  outline: none;
  cursor: pointer;
  list-style: none;
}
details > div {
  color: var(--text-main);
  font-family: 'Open Sans', Arial, sans-serif;
  margin-top: 8px;
  font-size: 1rem;
}

/* ===================
   FOOTER
==================== */
footer {
  background: var(--primary);
  color: #f7fafd;
  padding: 42px 0 28px 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #c4ebde;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
  transition: color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
}
.footer-contact {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #e5f6f2;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-end;
}
.footer-contact p {
  color: #e5f6f2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  filter: brightness(1000%);
}

/* ===================
   BUTTONS & INTERACTIONS
==================== */
.btn {
  display: inline-block;
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(0,80,45,0.06);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  padding: 12px 28px;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: center;
  outline: none;
  transition: background 0.22s, color .18s, transform 0.13s;
  margin-top: 0;
}
.btn:focus {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
a.btn {
  text-decoration: none;
}

/* ===================
   MOBILE MENU TOGGLE
==================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 1012;
  width: 42px;
  height: 42px;
  background: var(--secondary);
  color: #fff;
  border-radius: 99px;
  border: none;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  transition: background 0.18s, box-shadow .14s;
  box-shadow: 0 2px 8px rgba(0,168,107,0.15);
}
.mobile-menu-toggle:focus {
  outline: 2px solid #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: #fff;
  z-index: 2020;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.83,.13,.48,1.00);
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  box-shadow: 0 0 28px rgba(19,69,115,0.23);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--secondary);
  color: #fff;
  font-size: 2rem;
  border-radius: 99px;
  padding: 3px 10px 2px 10px;
  border: none;
  box-shadow: 0 2px 6px rgba(0,168,107,0.14);
  z-index: 1021;
  transition: background .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-top: 60px;
  margin-left: 42px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  padding: 12px 6px 7px 0;
  border-radius: 4px;
  letter-spacing: 1px;
  transition: background .17s, color .17s;
  width: 100%;
  display: inline-block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(0,168,107,0.17);
  color: var(--secondary);
}

/* Hide navigation for mobile */
@media (max-width: 992px) {
  .main-nav, .btn.btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =====================
   COOKIE CONSENT BANNER
======================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 4000;
  background: #fff;
  border-top: 5px solid var(--secondary);
  box-shadow: 0 -2px 16px rgba(0,72,34,0.10);
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-end;
  animation: slideup-banner 0.72s cubic-bezier(.68,.08,.46,1);
}
@keyframes slideup-banner {
  from { transform: translateY(95%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1.07rem;
  margin-bottom: 0;
}
.cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: background .18s, color .16s;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.reject {
  background: #e8ebf0;
  color: var(--primary);
}
.cookie-btn.settings {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #cfd9e9;
  color: var(--primary-dark);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--secondary);
}

/* Modal Popup (Cookie Settings) */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(19,69,115,0.23);
  justify-content: center;
  align-items: center;
  animation: fadein-modal 0.32s;
}
@keyframes fadein-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-dialog {
  background: #fff;
  padding: 38px 28px 28px 32px;
  border-radius: var(--radius);
  box-shadow: 0 9px 28px rgba(19, 69, 115, 0.18);
  max-width: 370px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 900;
}
.cookie-modal .close-modal {
  background: var(--secondary);
  color: #fff;
  border-radius: 99px;
  font-size: 1.3rem;
  border: none;
  padding: 3px 12px 2px 12px;
  position: absolute;
  top: 14px;
  right: 13px;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--primary);
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.cookie-option label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.02rem;
}
.cookie-switch {
  width: 36px;
  height: 20px;
  border-radius: 10px;
  background: #e8ebf0;
  position: relative;
  transition: background .18s;
  margin-left: 7px;
  flex-shrink: 0;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  transition: left .16s, background .18s;
}
.cookie-switch input[type="checkbox"]:checked + .cookie-switch::after {
  left: 19px;
  background: var(--secondary);
}
.cookie-switch input[type="checkbox"]:checked + .cookie-switch {
  background: #b7ffd4;
}
/* Always enabled option visually muted */
.cookie-option.essential label {
  color: var(--secondary-dark);
  opacity: 0.88;
}
.cookie-option.essential .cookie-switch {
  opacity: 0.5;
  pointer-events: none;
}

/* ======================
   FORM ELEMENTS
======================= */
input, textarea, select {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #e5e9f0;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  transition: border .15s, box-shadow .14s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--secondary);
  box-shadow: 0 2px 12px rgba(0,168,107,0.10);
  outline: none;
}
label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 7px;
  font-size: 1rem;
  display: block;
}

/* ===================
   MISCELLANEOUS
==================== */
ul, ol {
  margin-left: 18px;
  margin-bottom: 14px;
}
ul li, ol li {
  margin-bottom: 7px;
  font-size: 1rem;
  color: var(--text-main);
  font-family: 'Open Sans', Arial, sans-serif;
}

.section ul:not(.feature-grid):not(.sports-list):not(.club-benefits) li::before,
.features ul li::before {
  content: '● ';
  color: var(--secondary);
  font-weight: 900;
  font-size: 1.06em;
  margin-right: 4px;
}
.features ul, .about ul, .legal ul, .confirmation ul {
  margin-bottom: 18px;
}
.features ul li:last-child,
.about ul li:last-child,
.legal ul li:last-child,
.confirmation ul li:last-child {
  margin-bottom: 0;
}

ol {
  list-style: decimal inside;
}
ol li {
  margin-bottom: 7px;
}

hr {
  border: 0;
  border-top: 1.5px solid #e5e9f0;
  margin: 32px 0;
}

::-webkit-scrollbar {
  width: 12px;
  background: #e3edf3;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 999px;
}

/* ===========================
   RESPONSIVE DESIGN (mobile first)
=============================== */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 768px;
  }
  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 880px) {
  .feature-grid,
  .testimonial-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 96vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.5rem;
  }
  h3, .h3 {
    font-size: 1.08rem;
  }
  .main-nav {
    display: none !important;
  }
  .feature-grid,
  .testimonial-list,
  .club-benefits,
  .sports-list,
  .card-container,
  .content-grid {
    flex-direction: column !important;
    gap: 18px;
  }
  .footer-contact {
    max-width: 100%;
    text-align: left;
    align-items: flex-start;
  }
  .content-wrapper {
    padding: 0 !important;
  }
  .section, .features, .about, .services, .join, .confirmation, .about-team, .legal, .contact, .cta, .faq, .testimonials {
    padding: 24px 0 !important;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 560px) {
  .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .btn, .btn-primary, .btn-secondary {
    font-size: 0.97rem;
    padding: 11px 14px;
  }
  .mobile-nav a {
    font-size: 1.13rem;
  }
  .footer-contact,
  .footer-nav {
    font-size: 0.97rem;
  }
}


/* ========================
   UTILITY
========================= */
.text-center { text-align: center; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-24 { gap: 24px; }
.mt-3 { margin-top: 18px; }
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 18px; }

/* =======================
   NO GRID!
======================== */
/* No grid/columns anywhere, only flex & spacing applied */
