/* --- CSS RESET & BASE --- */
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;
}
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F5F7FA;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2B4257;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}
a {
  color: #2B4257;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F8B24F;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #2B4257;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.2;
}
h1 { font-size: 2.75rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1rem; }

.subtitle, .subheadline {
  color: #556c88;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.text-center {
  text-align: center;
}

strong, b {
  font-weight: bold;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #FFFFFF;
  border-bottom: 1px solid #E4E8EF;
  position: sticky;
  z-index: 102;
  top: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 18px;
}
.logo img {
  height: 40px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #2B4257;
  transition: color 0.18s;
  padding: 6px 0;
  position: relative;
}
nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #F8B24F;
  transition: width 0.2s;
  position: absolute;
  bottom: -2px;
  left: 0;
}
nav a:hover::after {
  width: 80%;
}
nav a:hover {
  color: #F8B24F;
}
.btn-primary {
  background: #2B4257;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 30px;
  border: none;
  border-radius: 28px;
  font-size: 1.1rem;
  box-shadow: 0 2px 16px rgba(43,66,87,0.04);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.22s;
  outline: none;
}
.btn-primary:focus,
.btn-primary:hover {
  background: #F8B24F;
  color: #2B4257;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 18px rgba(248,178,79,0.11);
}
.btn-secondary {
  background: #F8B24F;
  color: #2B4257;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 22px;
  box-shadow: 0 2px 12px rgba(248,178,79,0.10);
  cursor: pointer;
  transition: background 0.18s, color 0.2s;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #2B4257;
  color: #FFF;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  border: none;
  background: #fff;
  color: #2B4257;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 2200;
  position: fixed;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(43,66,87,0.06);
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E4E8EF;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #2B4257;
  color: #FFF;
  z-index: 2100;
  transform: translateX(-100vw);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transition: transform 0.35s cubic-bezier(0.42,0,0.58,1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  padding: 4px 8px;
  transition: background 0.15s, color 0.1s;
  border-radius: 3px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F8B24F;
  color: #2B4257;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  padding: 28px 36px 0 36px;
}
.mobile-nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  padding: 14px 4px;
  border-radius: 4px;
  transition: background 0.14s, color 0.14s;
  outline: none;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #F8B24F;
  color: #2B4257;
}

@media (max-width: 1023px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- MAIN SECTIONS & LAYOUTS --- */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 18px;
}
.hero {
  background: #E4E8EF;
  border-radius: 0 0 28px 28px;
  padding-top: 55px;
  padding-bottom: 55px;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.content-wrapper.text-center {
  align-items: center;
  text-align: center;
}

/********************
 FLEX LAYOUTS
*******************/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(43,66,87,0.05);
  padding: 28px 22px 24px 22px;
  min-width: 240px;
  flex: 1 1 240px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.feature-item img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  margin-bottom: 6px;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 6px 28px rgba(43,66,87,0.08);
  transform: translateY(-2px) scale(1.03);
}

.activities-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: space-between;
}
.activities-overview > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(43,66,87,0.06);
  flex: 1 1 220px;
  min-width: 220px;
  padding: 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.activities-overview > div a {
  color: #2B4257;
  text-decoration: underline;
  font-weight: 600;
  margin-top: 8px;
}
.activities-overview > div a:hover {
  color: #F8B24F;
}

.text-section {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #2B4257;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(43,66,87,0.05);
  padding: 24px 20px;
  min-width: 210px;
  transition: box-shadow 0.21s, transform 0.12s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 32px rgba(43,66,87,0.11);
  transform: translateY(-2px);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Testimonials & Stats */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(43,66,87,0.10);
  margin-bottom: 20px;
  color: #2B4257;
  min-width: 220px;
  flex: 1 1 240px;
  font-size: 1.1rem;
  transition: box-shadow 0.17s, background 0.12s;
}
.testimonial-card p {
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #556c88;
  font-family: 'Montserrat', Arial, sans-serif;
}
.community-stats {
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.community-stats ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #2B4257;
}

/********************
 FOOTER
*******************/
footer {
  background: #E4E8EF;
  border-radius: 18px 18px 0 0;
  padding: 34px 0 20px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 46px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-logo img {
  height: 40px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #2B4257;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #F8B24F;
}
.footer-contact {
  color: #2B4257;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/********************
 BLOG/FEATURED
*******************/
.featured-post {
  background: #F8B24F;
  color: #2B4257;
  border-radius: 16px;
  padding: 20px 18px;
  margin: 28px 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(248,178,79,0.09);
}
.featured-post a {
  color: #2B4257;
  font-weight: bold;
  text-decoration: underline;
}
.featured-post a:hover {
  color: #fff;
  background: #2B4257;
  padding: 1px 6px;
  border-radius: 4px;
  text-decoration: none;
}

.categories-label {
  color: #2B4257;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 8px;
}

/********************
 FORMATTING & MISC
*******************/
ul {
  margin-bottom: 18px;
  padding-left: 20px;
}
ul > li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
}
ul > li::before {
  content: '\2022';
  color: #F8B24F;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.2em;
}

strong {
  color: #2B4257;
  font-weight: 700;
}

/********************
 FAQ ACCORDION (
 only base styles since no js accordion in provided code)
*******************/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 10px rgba(43,66,87,0.05);
  padding: 20px 18px;
  font-size: 1rem;
  color: #2B4257;
  transition: box-shadow 0.17s;
}
.faq-accordion > div:hover {
  box-shadow: 0 4px 18px rgba(248,178,79,0.09);
}

/********************
 CONTACT/THANK YOU
*******************/
.contact-section {
  background: #E4E8EF;
  border-radius: 16px;
}
.contact-section .feature-grid {
  margin-top: 0;
}
.contact-section .feature-item {
  min-width: 220px;
}

/********************
 COOKIE CONSENT BANNER
*******************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #2B4257;
  color: #fff;
  box-shadow: 0 0 22px 0 rgba(43,66,87,0.15);
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  gap: 24px;
  animation: cookieBannerIn 0.5s cubic-bezier(0.37,0,0.63,1);
}
@keyframes cookieBannerIn {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  max-width: 560px;
  font-size: 1.05rem;
  margin-right: 10px;
}
.cookie-banner__btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner__btn,
.cookie-banner__btn-settings {
  padding: 8px 24px;
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.19s, color 0.13s;
  outline: none;
}
.cookie-banner__btn {
  background: #F8B24F;
  color: #2B4257;
}
.cookie-banner__btn:hover,
.cookie-banner__btn:focus {
  background: #fff;
  color: #2B4257;
}
.cookie-banner__btn-settings {
  background: transparent;
  color: #fff;
  border: 2px solid #F8B24F;
}
.cookie-banner__btn-settings:hover,
.cookie-banner__btn-settings:focus {
  background: #F8B24F;
  color: #2B4257;
}

/********************
 COOKIE SETTINGS MODAL
*******************/
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 92vw;
  max-width: 360px;
  background: #fff;
  color: #2B4257;
  border-radius: 16px;
  box-shadow: 0 8px 44px rgba(43,66,87,0.17);
  padding: 32px 26px 24px 26px;
  z-index: 3100;
  transform: translate(-50%,-50%) scale(0.87);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.25s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
  animation: cookieModalFadeIn 0.28s cubic-bezier(0.38,0,0.62,1);
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; transform: translate(-50%,20%) scale(0.95); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  color: #2B4257;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
  transition: color 0.15s;
}
.cookie-modal__close:focus,
.cookie-modal__close:hover {
  color: #F8B24F;
  opacity: 1;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.cookie-modal .cookie-categories {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
}
.cookie-modal .cookie-category-label {
  flex: 1 1 auto;
}
.cookie-modal .cookie-toggle {
  min-width: 35px;
  height: 20px;
  border-radius: 12px;
  background: #E4E8EF;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .cookie-toggle[data-checked="true"] {
  background: #F8B24F;
}
.cookie-modal .cookie-toggle-slider {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 1px;
  top: 1px;
  transition: left 0.18s;
}
.cookie-modal .cookie-toggle[data-checked="true"] .cookie-toggle-slider {
  left: 16px;
}
.cookie-modal .cookie-toggle[aria-disabled="true"] {
  opacity: 0.3;
  pointer-events: none;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal__actions .cookie-banner__btn,
.cookie-modal__actions .cookie-banner__btn-settings {
  margin-top: 0;
}

/* Overlay for modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(43,66,87,0.35);
  z-index: 3090;
}
.cookie-modal.active ~ .cookie-modal-overlay {
  display: block;
}

/********************
 ANIMATIONS & TRANSITIONS
*******************/
.btn-primary,
.btn-secondary,
.feature-item, .card, .testimonial-card,
.cookie-banner__btn,
.cookie-banner__btn-settings {
  transition: box-shadow 0.17s, background 0.18s, color 0.15s, transform 0.1s;
}

/********************
 RESPONSIVE DESIGN
*******************/
@media (max-width: 1023px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  nav { display: none; }
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .activities-overview, .testimonial-slider {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .content-wrapper.text-center {
    align-items: flex-start !important;
    text-align: left !important;
    gap: 18px;
  }
  .hero {
    padding-top: 26px;
    padding-bottom: 28px;
  }
  .section,
  section {
    padding: 24px 6px;
    margin-bottom: 32px;
  }
  .feature-grid, .card-container, .activities-overview, .community-stats ul {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .community-stats ul {
    gap: 19px;
    font-size: 0.98rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.05rem; }
  .footer-contact {
    font-size: 0.97rem;
  }
  .featured-post {
    margin: 18px 0 10px 0;
    padding: 14px 10px;
  }
  .cookie-modal {
    max-width: 96vw;
    padding: 18px 8px 16px 8px;
  }
}
@media (max-width: 480px) {
  .cookie-banner__btn,
  .cookie-banner__btn-settings {
    padding: 8px 13px;
    font-size: 0.95rem;
  }
  .cookie-banner__btns {
    flex-direction: column;
    gap: 6px;
  }
}

/********************
 SCROLLBAR
*******************/
body {
  scrollbar-color: #F8B24F #E4E8EF;
  scrollbar-width: thin;
}
body::-webkit-scrollbar {
  width: 9px;
}
body::-webkit-scrollbar-thumb {
  background: #F8B24F;
  border-radius: 8px;
}
body::-webkit-scrollbar-track {
  background: #E4E8EF;
}

/********************
 UTILITY
*******************/
.mr-2 {
  margin-right: 8px !important;
}
.mt-2 {
  margin-top: 8px !important;
}
.mb-2 {
  margin-bottom: 8px !important;
}

/********************
 FOCUS STATES
*******************/
a:focus, .btn-primary:focus, .btn-secondary:focus, .cookie-banner__btn:focus, .cookie-banner__btn-settings:focus, .mobile-menu-close:focus {
  outline: 2px dashed #F8B24F;
  outline-offset: 1px;
}

/********************
 ACCESSIBILITY OVERRIDES
*******************/
[tabindex="-1"]:focus {
  outline: none !important;
}

/* End of style.css */
