/* --- CSS RESET & BASE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  color: #15304A;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #15304A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #5BA682;
  outline: none;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1em;
}
li + li {
  margin-top: 0.6em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #15304A;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 28px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: #15304A;
}
p {
  margin-bottom: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
}
.text-section {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
/* ------------------ HEADER / NAVIGATION ------------------ */
header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(21,48,74,0.04);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 0;
  color: #15304A;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
header nav a:hover {
  color: #5BA682;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #15304A;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 30px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.16s, box-shadow 0.16s, transform 0.14s;
  box-shadow: 0 2px 10px 0 rgba(21,48,74,0.07);
  cursor: pointer;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #5BA682;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(91,166,130,0.10);
  transform: translateY(-3px) scale(1.02);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #15304A;
  cursor: pointer;
  z-index: 101;
  padding: 4px 16px;
  line-height: 1;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #f1f4f6;
  border-radius: 7px;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.78,.05,.32,1.26);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 22px 32px 22px;
  box-shadow: 0 0 32px 0 rgba(60,60,60,0.08);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #15304A;
  cursor: pointer;
  margin-bottom: 30px;
  padding: 6px 10px;
  border-radius: 7px;
  transition: background 0.16s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #f1f4f6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #15304A;
  font-weight: 500;
  padding: 12px 0 12px 0;
  border-radius: 6px;
  transition: background 0.17s, color 0.2s;
  line-height: 1.2;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E7EFEA;
  color: #5BA682;
}
/* ------------------ HERO, CTA, FEATURES SECTIONS ------------------ */
.hero, .cta {
  background: #f7f7f7;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 3px 24px 0 rgba(21,48,74,0.05);
}
.hero .content-wrapper,
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
  padding: 46px 10px 40px 10px;
}
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  width: 100%;
  margin: 0;
  justify-content: flex-start;
}
.features ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 20px 18px 14px;
  border-radius: 12px;
  background: #f7f7f7;
  font-size: 1.05rem;
  color: #15304A;
  min-width: 220px;
  box-shadow: 0 2px 8px 0 rgba(91,166,130,0.03);
  min-height: 72px;
}
.features ul li img {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  filter: grayscale(100%) opacity(0.8);
}
.features ul li .desc {
  font-size: 0.98rem;
  color: #5BA682;
  margin-top: 3px;
}
/* --- CARD CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 18px 0 rgba(21,48,74,0.07);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.17s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(21,48,74,0.14);
  transform: translateY(-4px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* ----- TESTIMONIALS ----- */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px 30px 20px;
  background: #FFF;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  min-width: 220px;
  background: #F7F7F7;
  border-radius: 11px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px 0 rgba(21,48,74,0.08);
  color: #1B2534;
  font-size: 1.07rem;
  transition: box-shadow 0.16s;
}
.testimonial-card strong {
  color: #15304A;
  font-size: 1em;
}
.testimonial-card p {
  color: #1B2534;
  font-style: italic;
}
.testimonial-card:hover {
  box-shadow: 0 7px 32px 0 rgba(21,48,74,0.13);
}
.founder-message {
  margin: 20px 0;
  padding: 22px 20px;
  background: #e7efea;
  border-radius: 10px;
  color: #15304A;
  box-shadow: 0 2px 12px 0 rgba(91,166,130,0.05);
  font-size: 1.05rem;
}
.founder-message h3 {
  margin-bottom: 8px;
}
/* ----- SERVICES / CLUB LISTS ----- */
.services {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.services ul, .faq > .container ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.services li strong, .features li strong {
  color: #15304A;
  font-weight: 700;
}
.tags {
  background: #E7EFEA;
  color: #5BA682;
  font-size: 0.97em;
  border-radius: 6px;
  margin-left: 9px;
  padding: 2px 10px;
}
/* ----- FAQ ----- */
.faq {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F7F7F7;
  border-radius: 16px;
}
.faq .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faq h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #15304A;
}
.faq div {
  margin-bottom: 10px;
}
/* ----- CONTACT ----- */
.contact {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.contact .text-section p {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact img {
  height: 20px;
  width: 20px;
}
/* ----- FOOTER ----- */
footer {
  background: #f7f7f7;
  padding: 34px 0 16px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
footer nav a {
  color: #15304A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #5BA682;
}
footer p {
  color: #3b4958;
  font-size: 0.97rem;
  margin-bottom: 3px;
  text-align: center;
}
/* ----------- LEGAL SECTION ----------- */
.legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.legal .text-section {
  gap: 17px;
}
.legal ul {
  gap: 11px;
}
.legal h1, .legal h2 {
  color: #15304A;
}
/* ------------------ COOKIE CONSENT BANNER & MODAL ------------------ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #f7f7f7;
  box-shadow: 0 -2px 20px 0 rgba(21,48,74,0.07);
  padding: 22px 10px 22px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 501;
  gap: 32px;
  font-size: 1rem;
  transition: transform 0.29s cubic-bezier(.4,1.42,.51,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner__text {
  color: #15304A;
  max-width: 580px;
}
.cookie-banner__actions {
  display: flex;
  gap: 15px;
}
.cookie-btn {
  padding: 10px 24px;
  background: #15304A;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, opacity 0.14s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #5BA682;
}
.cookie-btn.secondary {
  background: #fff;
  color: #15304A;
  border: 1px solid #ddd;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #e7efea;
}
.cookie-btn.settings {
  background: #f7f7f7;
  color: #15304A;
  border: 1px solid #ddd;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #e7efea;
  color: #5BA682;
}
.cookie-modal__overlay {
  position: fixed;
  z-index: 900;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(21,48,74,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: opacity 0.2s;
}
.cookie-modal {
  background: #fff;
  padding: 38px 32px 28px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 48px 0 rgba(21,48,74,0.16);
  max-width: 420px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  margin-bottom: 12px;
  color: #15304A;
  font-size: 1.3rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cookie-category:last-child {
  margin-bottom: 0;
}
.cookie-category label {
  font-size: 1.08rem;
  color: #15304A;
}
.cookie-toggle {
  width: 42px;
  height: 24px;
  background: #e5e8ee;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background 0.16s;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(91,166,130,0.13);
  transition: left 0.18s, background 0.18s;
}
.cookie-toggle.active {
  background: #5BA682;
}
.cookie-toggle.active .slider {
  left: 21px;
  background: #15304A;
}
.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}
.cookie-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  color: #15304A;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.13s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #f1f4f6;
}
.cookie-category.essential {
  opacity: 0.7;
  font-style: italic;
}
/* ----------- MISC UTILS ----------- */
::-webkit-input-placeholder { color: #B6C1CF; }
::-moz-placeholder { color: #B6C1CF; }
:-ms-input-placeholder { color: #B6C1CF; }
::placeholder { color: #B6C1CF; }

/* Remove tap highlight on mobile */
a, button {
  -webkit-tap-highlight-color: rgba(0,0,0,0.09);
}
/* --- Responsive Breakpoints (MOBILE-FIRST) --- */
@media (max-width: 991px) {
  h1 { font-size: 2rem; }
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  header .container { gap: 12px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; margin-bottom: 13px; }
  .section, .features, .hero, .cta, .faq, .services, .legal, .contact {
    padding: 22px 6px;
    margin-bottom: 38px;
  }
  .hero .content-wrapper, .cta .content-wrapper {
    padding-top: 30px; padding-bottom: 24px;
    gap: 13px;
  }
  .features ul, .services ul {
    flex-direction: column;
    gap: 20px;
  }
  header .container {
    flex-direction: row;
    gap: 6px;
  }
  header nav, header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
  footer .container {
    padding-left: 6px;
    padding-right: 6px;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.07rem; }
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    text-align: left;
    align-items: flex-start;
  }
}
