/* --- CSS RESET & BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}
body {
  background: #EEF1F5;
  color: #152B44;
  font-family: 'Open Sans', Arial, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  outline: none;
}

/* --- TYPOGRAPHY FOR GEOMETRIC/STRUCTURED AESTHETIC --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Verdana, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}
p, ul, ol {
  margin-bottom: 16px;
}
ul, ol {
  padding-left: 18px;
}

strong {
  font-weight: 700;
}

/* --- BUTTONS --- */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 0.75em 2.2em;
  border-radius: 30px;
  transition: background 0.3s, color 0.3s, box-shadow 0.25s, transform 0.18s;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: 0 4px 16px 0 rgba(21,43,68,0.07);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 12px;
}
.btn-primary {
  background: #152B44;
  color: #fff !important;
  border: 2px solid #152B44;
}
.btn-primary:hover, .btn-primary:focus {
  background: #D1B686;
  color: #152B44 !important;
  border-color: #D1B686;
  box-shadow: 0 8px 24px 0 rgba(21,43,68,0.12);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #fff;
  color: #152B44;
  border: 2px solid #D1B686;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #D1B686;
  color: #152B44;
  border-color: #152B44;
  transform: translateY(-2px) scale(1.03);
}
button {
  cursor: pointer;
}

/* --- FLEXBOX-ONLY LAYOUT CONTAINERS --- */
.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;
}

/* --- HEADER & MAIN NAV --- */
header {
  background: #fff;
  width: 100%;
  box-shadow: 0 4px 24px 0 rgba(21,43,68,0.05);
  position: sticky;
  top: 0;
  z-index: 40;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 20px;
  justify-content: flex-start;
}
.main-nav img {
  height: 48px;
  margin-right: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #152B44;
  position: relative;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EEF1F5;
  color: #D1B686;
}
.main-nav .btn-primary {
  margin-left: 24px;
  padding: 0.6em 1.7em;
  font-size: 1rem;
  border-radius: 24px;
}

/* --- MOBILE BURGER MENU BUTTON --- */
.mobile-menu-toggle {
  display: none;
  background: #152B44;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 18px;
  margin: 0 10px;
  border-radius: 10px;
  transition: background 0.2s;
  z-index: 51;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #D1B686;
  color: #152B44;
}

/* --- MOBILE SLIDE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 270px;
  background: #fff;
  box-shadow: 4px 0 24px 0 rgba(21,43,68,0.08);
  z-index: 100;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.7,.3,.1,1);
  display: flex;
  flex-direction: column;
  padding: 32px 20px 20px 22px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-bottom: 18px;
  background: none;
  color: #152B44;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #EEF1F5;
  color: #D1B686;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.12rem;
  padding: 10px 0 10px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  color: #152B44;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #EEF1F5;
  color: #D1B686;
}

/* Overlay for mobile navigation when active */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21, 43, 68, 0.27);
  z-index: 99;
  display: none;
}
.mobile-menu.active ~ .mobile-menu-overlay {
  display: block;
}

/* --- HERO SECTIONS --- */
.hero {
  background: #fff;
  border-bottom: 5px solid #D1B686;
}
.hero .content-wrapper {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 40px 0 32px;
}

/* --- FEATURE GRID --- */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature {
  background: #EEF1F5;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(21,43,68,0.06);
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 270px;
  padding: 28px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  border: 2.2px solid #D1B6861A;
  transition: box-shadow 0.22s, border 0.2s, transform 0.22s;
}
.feature img {
  width: 36px;
  height: 36px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 12px 32px rgba(21, 43, 68, 0.14);
  border: 2.2px solid #D1B686;
  transform: translateY(-4px) scale(1.02);
}

/* --- ABOUT PREVIEW, ABOUT --- */
.about-preview, .about {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(21,43,68,.06);
  margin-bottom: 54px;
}
.about .content-wrapper, .about-preview .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* --- SERVICE PREVIEW --- */
.services-preview {
  background: #EEF1F5;
  border-left: 8px solid #D1B686;
  border-radius: 20px 0 0 20px;
}
.services-preview ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* --- CTA BANNER --- */
.cta-banner {
  background: #152B44;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(21,43,68,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 64px 0 54px;
}
.cta-banner .btn-primary {
  background: #D1B686;
  color: #152B44;
  border: 2px solid #D1B686;
}
.cta-banner .btn-primary:hover{
  background: #fff;
  color: #152B44;
  border: 2px solid #fff;
}

/* --- TESTIMONIALS --- */
.testimonials, .testimonials-preview {
  background: #EEF1F5;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(21,43,68,0.10);
  margin-bottom: 52px;
}
.testimonials-preview .testimonial-card,
.testimonials .testimonial-card {
  background: #fff;
  color: #152B44;
  border-radius: 12px;
  border: 2px solid #D1B68619;
  box-shadow: 0 6px 20px 0 rgba(21,43,68,0.07);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding: 20px 24px;
  max-width: 480px;
  transition: box-shadow 0.2s, border 0.2s;
}
.testimonials-preview .testimonial-card span,
.testimonials .testimonial-card span {
  font-size: 1.04rem;
  font-weight: 600;
  color: #D1B686;
  letter-spacing: 0.03em;
}
.testimonials-preview .testimonial-card:hover,
.testimonials .testimonial-card:hover{
  box-shadow: 0 10px 28px 0 rgba(21,43,68,.17);
  border: 2px solid #D1B686;
}

/* Ensure high contrast for testimonial text */
.testimonial-card p,
.testimonial-card span {
  color: #152B44;
}

/* --- CARD STYLES --- */
.card, .club-card, .trainer-card, .article, .featured-guide {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px 0 rgba(21,43,68,0.07);
  padding: 20px 22px;
  margin-bottom: 20px;
  border: 2px solid #D1B6861A;
  transition: box-shadow 0.18s, border 0.22s;
}
.card:hover, .club-card:hover, .trainer-card:hover, .article:hover, .featured-guide:hover {
  border: 2px solid #D1B686;
  box-shadow: 0 8px 34px 0 rgba(21,43,68,0.16);
  transform: translateY(-2px) scale(1.02);
}

/* --- CLUBS PAGE --- */
.club-listing .club-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.club-card {
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 16px;
}
.club-card .location {
  color: #D1B686;
  font-size: 0.98rem;
  font-weight: 700;
  margin-top: 8px;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin: 20px 0 12px;
}
.filters span {
  font-weight: 600;
  color: #152B44;
  font-size: 1.05rem;
  margin-right: 8px;
}
.filters button {
  background: #EEF1F5;
  color: #152B44;
  border-radius: 10px;
  border: none;
  padding: 8px 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
  transition: background 0.17s, color 0.17s, border 0.17s;
}
.filters button:hover, .filters button:focus {
  background: #D1B686;
  color: #152B44;
}
.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}
.search-bar input[type="text"] {
  flex: 1 1 160px;
  border: 2px solid #D1B686;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1rem;
  background: #EEF1F5;
  color: #152B44;
  margin-right: 6px;
  transition: border 0.18s, box-shadow 0.15s;
}
.search-bar input[type="text"]:focus {
  border: 2px solid #152B44;
  box-shadow: 0 2px 8px 0 rgba(21,43,68,0.08);
}
.search-bar button {
  padding: 9px 24px;
  border: 2px solid #D1B686;
  border-radius: 8px;
  background: #D1B686;
  color: #152B44;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.06em;
  transition: background 0.17s, color 0.17s, border 0.17s;
}
.search-bar button:hover, .search-bar button:focus {
  background: #152B44;
  color: #fff;
  border: 2px solid #152B44;
}

/* --- TRAINERS PAGE --- */
.trainer-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.trainer-card {
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 16px;
}
.trainer-card h3 {
  color: #152B44;
}
.trainer-card span {
  color: #D1B686;
  font-weight: 600;
}

/* --- PORADNIKI/ARTICLES --- */
.articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.articles article {
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 320px;
  border-radius: 16px;
}
.featured-guide {
  margin-top: 32px;
  border-left: 6px solid #D1B686;
  background: #fffde8;
  color: #152B44;
  border-radius: 14px 0 0 14px;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 5px solid #D1B686;
  margin-top: 55px;
}
footer .container {
  padding: 32px 20px 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
.footer-nav img {
  height: 38px;
  margin-right: 16px;
}
.footer-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav nav a {
  color: #152B44;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 8px;
  transition: color 0.15s;
  text-transform: uppercase;
  border-radius: 6px;
}
.footer-nav nav a:hover, .footer-nav nav a:focus {
  color: #D1B686;
  background: #EEF1F5;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.97rem;
  color: #152B44;
}
.footer-contact img {
  width: 20px;
  height: 20px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer-social img {
  width: 28px;
  height: 28px;
  opacity: 0.8;
  transition: opacity 0.18s, transform 0.2s;
  cursor: pointer;
}
.footer-social img:hover {
  opacity: 1;
  transform: scale(1.13);
}
.footer-copy {
  font-size: 0.9rem;
  color: #b3b8c2;
  text-align: left;
  margin-top: 18px;
}

/* --- LEGAL SECTIONS --- */
.legal-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(21,43,68,0.04);
  padding: 35px 18px;
  margin-bottom: 50px;
}
.legal-section h1 {
  margin-bottom: 21px;
}
.legal-section h2 {
  margin: 26px 0 12px 0;
}
.legal-section ul {
  list-style: disc inside;
  margin-bottom: 18px;
  margin-left: 20px;
  padding-left: 0;
}

/* --- CONTACT PAGE --- */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-left: 0;
  list-style: none;
}
.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #152B44;
  font-size: 1rem;
}
.contact-details ul li img {
  width: 21px;
  height: 21px;
}
.map .address-text {
  background: #EEF1F5;
  border-radius: 11px;
  padding: 13px 20px;
  font-size: 1.09rem;
  margin-top: 14px;
  color: #152B44;
  font-weight: 600;
}

.confirmation .btn-primary {
  margin-top: 18px;
}

/* --- CALL TO ACTION, CALLOUT SECTIONS --- */
.callout, .confirmation {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 16px 0 rgba(21,43,68,0.06);
  padding: 38px 22px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.callout a.btn-primary, .confirmation a.btn-primary {
  margin-top: 15px;
}

/* --- MEDIA QUERIES: MOBILE-FIRST RESPONSIVE DESIGN --- */
@media (max-width: 1150px) {
  .main-nav {
    gap: 15px;
  }
  .footer-nav, .footer-social {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .club-listing .club-highlights,
  .trainer-previews,
  .articles {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 12px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    position: absolute;
    top: 16px;
    right: 22px;
  }
  .mobile-menu {
    width: 84vw;
    min-width: unset;
    max-width: 345px;
    padding-top: 28px;
  }
  .features .feature-grid, .card-container, .content-grid, .club-listing .club-highlights, .trainer-previews, .articles {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section, .footer-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero .content-wrapper {
    padding: 28px 0 16px;
    max-width: 100%;
  }
  .cta-banner {
    margin: 36px 0 36px 0;
    padding: 26px 12px;
  }
  .section, .legal-section, .callout, .confirmation {
    padding: 22px 8px;
  }
  .footer-social {
    gap: 13px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1.09rem; }
  .hero .content-wrapper { padding: 18px 0 6px; }
  .footer-nav img { height: 28px; }
  .footer-nav, .footer-contact, .footer-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
}

/* --- MICROINTERACTIONS & SUBTLE ANIMATIONS --- */
.feature, .card, .club-card, .trainer-card, .article, .testimonial-card, .featured-guide {
  transition: box-shadow 0.18s, border-color 0.19s, transform 0.15s;
}
.filters button, .search-bar button, .mobile-menu-close, .mobile-menu-toggle {
  transition: background 0.17s, color 0.14s, transform 0.14s;
}
.filters button:active, .search-bar button:active, .mobile-menu-close:active, .mobile-menu-toggle:active {
  transform: scale(0.96);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #152B44;
  box-shadow: 0 -4px 20px rgba(21,43,68,0.13);
  z-index: 9999;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 24px;
  font-size: 1rem;
  animation: slideUpCookie 0.35s cubic-bezier(.5,1.6,.5,1.0);
}
@keyframes slideUpCookie {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 2 1 190px;
  min-width: 160px;
}
.cookie-banner .cookie-actions {
  flex: 1 1 180px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 24px;
  border: 2px solid #D1B686;
  padding: 7px 24px;
  margin: 0 4px;
  transition: background 0.18s, color 0.18s, border 0.15s, transform 0.15s;
}
.cookie-banner .accept {
  background: #D1B686;
  color: #152B44;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #152B44;
  color: #fff;
  border-color: #152B44;
}
.cookie-banner .reject {
  background: #fff;
  color: #152B44;
  border: 2px solid #152B44;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #EEF1F5;
  color: #D1B686;
  border-color: #D1B686;
}
.cookie-banner .settings {
  background: #EEF1F5;
  color: #152B44;
  border: 2px solid #EEF1F5;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #D1B686;
  color: #152B44;
  border: 2px solid #D1B686;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 9px;
    font-size: 0.99rem;
    gap: 10px;
  }
  .cookie-banner .cookie-actions{
    width: 100%;
    gap: 10px;
    justify-content: flex-start;
  }
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,43,68,0.17);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.33s cubic-bezier(.6,1.1,.3, 1.0);
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #152B44;
  border-radius: 16px;
  box-shadow: 0 10px 40px 0 rgba(21,43,68,0.20);
  min-width: 330px;
  max-width: 95vw;
  padding: 36px 28px 22px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal-content h2 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}
.cookie-modal-content .modal-section {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 11px 0;
}
.cookie-modal-content label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #D1B686;
  width: 18px;
  height: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #152B44;
  border-radius: 5px;
  transition: background 0.15s, color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #EEF1F5;
  color: #D1B686;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 19px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 20px;
  padding: 8px 22px;
  border: 2px solid #D1B686;
  background: #D1B686;
  color: #152B44;
  transition: background 0.15s, color 0.18s; 
}
.cookie-modal-actions .secondary {
  background: #fff;
  color: #152B44;
  border: 2px solid #D1B686;
}
.cookie-modal-actions .secondary:hover, .cookie-modal-actions .secondary:focus {
  background: #EEF1F5;
  color: #D1B686;
  border-color: #152B44;
}
.cookie-modal-actions .primary:hover, .cookie-modal-actions .primary:focus {
  background: #152B44;
  color: #fff;
  border-color: #152B44;
}

/* --- ALL: STRUCTURED SPACING, GEOMETRIC FEEL & VISUAL SEPARATION --- */
.section:not(:last-child),
.about-preview:not(:last-child), .services-preview:not(:last-child), .about:not(:last-child),
.cta-banner:not(:last-child),
.testimonials-preview:not(:last-child), .testimonials:not(:last-child),
.callout:not(:last-child), .confirmation:not(:last-child),
.legal-section:not(:last-child) {
  margin-bottom: 60px;
}
.card-container > *, .content-grid > *, .feature-grid > *, .club-highlights > *, .trainer-previews > *, .articles > * {
  margin-bottom: 0 !important;
}

/* --- CUSTOM SCROLLBAR STYLES (CHROME/EDGE) --- */
::-webkit-scrollbar {
  width: 8px;
  background: #EEF1F5;
}
::-webkit-scrollbar-thumb {
  background: #D1B686;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #bea465;
}

/* --- END --- */