/* RESET & BASE STYLES */
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, 
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #21486B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #21486B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #F1B434;
  outline: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #21486B;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 1.5rem; margin-bottom: 18px; }
h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; font-weight: 500; }
p, li {
  font-size: 1rem;
  color: #21486B;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}

/* CONTAINERS & SECTIONS */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: transparent;
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .section, section {
    padding: 30px 0;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 22px;
  }
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(33,72,107,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1003;
  min-height: 78px;
  padding: 0 0 0 0;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 4px;
  color: #21486B;
  font-weight: 600;
  position: relative;
  transition: background 0.25s, color 0.23s;
}
header nav a:focus,
header nav a:hover {
  background: #F1B434;
  color: #21486B;
}
header nav a img {
  height: 38px;
  width: auto;
  margin-right: 12px;
  display: inline-block;
  vertical-align: middle;
}
header .cta.primary {
  background: #21486B;
  color: #fff;
  border-radius: 50px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 32px;
  margin-left: auto;
  margin-right: 24px;
  border: none;
  outline: 0;
  box-shadow: 0 2px 12px rgba(33,72,107,0.085);
  transition: background 0.22s, color 0.2s, box-shadow 0.22s;
  cursor: pointer;
  letter-spacing: 0.03em;
}
header .cta.primary:hover,
header .cta.primary:focus {
  background: #F1B434;
  color: #21486B;
  box-shadow: 0 4px 18px rgba(241,180,52,0.12);
}

header .mobile-menu-toggle {
  display: none;
}

/* Mobile NAV HAMBURGER STYLES */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: #21486B;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.17s;
  z-index: 1201;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #D9E5EA;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1205;
  box-shadow: -6px 0 24px rgba(33,72,107,0.08);
  transition: transform 0.32s cubic-bezier(0.7, 0, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
  transform: translateX(0);
}
.mobile-menu.open {
  left: 0;
  pointer-events: auto;
  transform: translateX(-100vw);
}
.mobile-menu-close {
  background: none;
  font-size: 2.2rem;
  color: #21486B;
  padding: 13px 20px;
  border: none;
  cursor: pointer;
  border-radius: 8px 0 0 8px;
  align-self: flex-end;
  margin: 18px 10px 0 0;
  transition: background 0.17s;
  z-index: 1207;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #D9E5EA;
}
.mobile-nav {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 20px;
  padding-left: 32px;
}
.mobile-nav a {
  display: block;
  width: 100%;
  font-size: 1.15rem;
  color: #21486B;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 18px 8px 18px 0;
  border: none;
  border-radius: 0;
  transition: background 0.19s, color 0.19s;
  margin-bottom: 2px;
  background: none;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #F1B434;
  color: #21486B;
}

@media (max-width: 1100px) {
  header nav {
    gap: 18px;
  }
  header .cta.primary {
    margin-right: 12px;
    padding: 10px 16px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 12px;
  }
  header .cta.primary {
    margin-right: 6px;
    font-size: 0.97rem;
    padding: 9px 10px;
  }
}
@media (max-width: 850px) {
  header nav a img {
    height: 34px;
  }
  header nav a, header nav a:focus, header nav a:hover {
    padding: 7px 8px;
  }
}
@media (max-width: 700px) {
  header nav {
    display: none !important;
  }
  header .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
    margin: 0 10px 0 0;
  }
}


/* HERO SECTION */
.hero {
  background: #21486B;
  color: #fff;
  border-radius: 0 0 28px 28px;
  min-height: 360px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 50px;
  box-shadow: 0 10px 36px rgba(33,72,107,.09);
}
.hero .container {
  width: 100%;
  padding-top: 35px;
  padding-bottom: 35px;
}
.hero .content-wrapper {
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}
.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  text-shadow: 0 2px 10px rgba(30,47,91,0.10);
  letter-spacing: 0.02em;
}
.hero .subheadline {
  color: #D9E5EA;
  font-size: 1.23rem;
  margin-bottom: 18px;
}
.hero .cta.primary {
  background: #F1B434;
  color: #21486B;
  min-width: 180px;
  margin-top: 14px;
}
.hero .cta.primary:hover,
.hero .cta.primary:focus {
  background: #fff;
  color: #21486B;
  box-shadow: 0 2px 18px rgba(33,72,107,0.1);
}
@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    padding-bottom: 30px;
    border-radius: 0 0 18px 18px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero .subheadline {
    font-size: 1rem;
    margin-bottom: 13px;
  }
  .hero .cta.primary {
    font-size: 0.99rem;
    min-width: 120px;
    padding: 11px 18px;
  }
}

/* CARD & FLEX STRUCTURES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(33,72,107,.09);
  padding: 28px 24px;
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.23s, transform 0.21s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(241,180,52,0.09), 0 2px 18px rgba(33,72,107,.08);
  transform: translateY(-3px);
}

.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;
}
@media (max-width: 920px) {
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* FEATURES SECTION */
.features ul, .services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
}
.features li, .services li {
  background: #fff;
  box-shadow: 0 2px 14px rgba(33,72,107,.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px 18px 20px;
  min-width: 268px;
  max-width: 410px;
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 20px;
  border-left: 5px solid #F1B434;
  transition: box-shadow 0.25s;
}
.features li:hover, .services li:hover {
  box-shadow: 0 8px 36px rgba(33,72,107,.10), 0 3px 20px rgba(241,180,52,0.09);
}
.features li img, .services li img {
  height: 44px;
  width: 44px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .features ul, .services ul {
    gap: 12px;
  }
  .features li, .services li {
    font-size: 0.99rem;
    min-width: 170px;
    padding: 15px 14px 13px 10px;
    gap: 9px;
  }
}
@media (max-width: 680px) {
  .features ul, .services ul {
    flex-direction: column;
    gap: 17px;
  }
  .features li, .services li {
    min-width: 0; max-width: 100%; width: 100%;
  }
}

/* TESTIMONIALS */
.testimonials {
  background: #D9E5EA;
  border-radius: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  box-shadow: 0 2px 15px rgba(33,72,107,.08);
  border-radius: 22px;
  padding: 24px 30px 18px 30px;
  margin-bottom: 20px;
  min-width: 290px;
  max-width: 600px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #21486B;
  transition: box-shadow 0.21s, transform 0.2s;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #21486B;
  margin-bottom: 10px;
  quotes: "\201C" "\201D" "\2018" "\2019";
}
.testimonial-card blockquote:before {
  content: open-quote;
  color: #F1B434;
  font-size: 2.1rem;
  line-height: 0;
  vertical-align: sub;
  margin-right: 1px; 
}
.testimonial-card blockquote:after {
  content: close-quote;
  color: #F1B434;
  font-size: 2.1rem;
  line-height: 0;
  vertical-align: sub;
  margin-left: 1px;
}
.testimonial-card p {
  font-size: 1rem;
  margin-bottom: 2px;
}
.testimonial-card strong {
  color: #21486B;
}
.testimonials .content-wrapper {
  gap: 23px;
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 16px 10px 14px 10px;
    min-width: 0;
    max-width: 100%;
    font-size: 0.99rem;
  }
}

/* BUTTONS & CTA */
.cta {
  display: inline-block;
  padding: 13px 32px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  margin-top: 8px;
  box-shadow: 0 2px 12px rgba(33,72,107,.10);
  transition: background 0.21s, color 0.21s, box-shadow 0.19s, transform 0.13s;
  letter-spacing: 0.025em;
}
.cta.primary {
  background: #21486B;
  color: #fff;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #F1B434;
  color: #21486B;
  transform: translateY(-2px);
}
.cta.secondary {
  background: #fff;
  color: #21486B;
  border: 2px solid #21486B;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #D9E5EA;
  color: #21486B;
}
@media (max-width: 700px){
  .cta {
    font-size: 0.99rem;
    padding: 9px 16px;
  }
}

/* LISTS & FACT BOXES */
.text-section ul {
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.text-section ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 0;
}
.text-section ul li:before {
  content: "";
  background: #F1B434;
  height: 10px;
  width: 10px;
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 3px;
  display: inline-block;
}
.highlight-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 18px;
}
.highlight-boxes > div {
  background: #D9E5EA;
  color: #21486B;
  border-radius: 10px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 17px 24px;
  flex: 1 1 180px;
  box-shadow: 0 2px 9px rgba(33,72,107,0.05);
  font-size: 1.03rem;
}
@media (max-width:600px){
  .highlight-boxes{
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
  }
}

/* TEAM OVERVIEW, EVENTS, POST LISTS */
.team-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 20px;
}
.team-overview > .text-section {
  flex: 1 1 250px;
}
.team-overview > ul {
  flex: 2 1 420px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 800px) {
  .team-overview { flex-direction: column; gap: 18px; }
}
.events-list ul, .post-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
.events-list li, .post-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(33,72,107,.09);
  padding: 18px 24px 16px 22px;
  min-width: 220px;
  max-width: 390px;
  margin-bottom: 20px;
  flex: 1 1 290px;
  transition: box-shadow 0.18s, transform 0.19s;
}
.events-list li:hover, .post-list li:hover {
  box-shadow: 0 6px 18px rgba(241,180,52,0.11), 0 2px 10px rgba(33,72,107,0.07);
  transform: translateY(-2px);
}
@media (max-width: 700px) {
  .events-list ul, .post-list ul { flex-direction: column; gap: 12px; }
  .events-list li, .post-list li { min-width: 0; max-width: 100%; }
}
.event-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.event-highlights li{
  background: #D9E5EA;
  border-radius: 7px;
  padding: 13px 20px;
  font-size:1rem;
  color:#21486B;
}

/* FAQ, SCHEDULE, CATEGORY FILTERS */
.faq-list ul, .schedule-list ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-list li, .schedule-list li {
  background: #D9E5EA;
  border-radius: 10px;
  padding: 15px 20px 11px 20px;
  color: #21486B;
}
.faq-list h3 {
  margin-bottom: 6px;
  font-size: 1.07rem;
  color: #21486B;
}
.categories-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.categories-filter span {
  background: #D9E5EA;
  color: #21486B;
  border-radius: 6px;
  padding: 6px 13px;
  margin: 0 1px;
  font-size:0.97rem;
}
.categories-filter strong{
  font-weight:700;
  color: #F1B434;
}

/* ADDRESS block in footer */
footer address {
  font-style: normal;
  color: #21486B;
  font-size: 0.98rem;
  margin-top: 14px;
  line-height: 1.6;
}
footer address img {
  height: 18px;
  width: 18px;
  vertical-align: middle;
  margin-right: 4px;
}
footer address a {
  color: #21486B;
  font-weight: 500;
  word-break: break-all;
}
footer address a:hover {
  color: #F1B434;
}

/* FOOTER */
footer {
  background: #21486B;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 38px 10% 36px 10%;
  font-size: 1rem;
  border-radius: 26px 26px 0 0;
  margin-top: 65px;
  box-shadow: 0 -2px 12px rgba(33,72,107,0.07);
  position: relative;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.18s;
  font-size: 0.98rem;
}
footer nav a:hover,
footer nav a:focus {
  color: #F1B434;
}
footer > div {
  min-width: 110px;
  display: flex;
  align-items: center;
}
footer > div img {
  height: 42px;
  width: 42px;
  filter: brightness(0) invert(1);
}
@media (max-width: 1100px) {
  footer {
    padding: 40px 5% 40px 5%;
  }
}
@media (max-width: 850px){
  footer { flex-direction: column; align-items: flex-start; gap: 18px;  padding: 32px 8% 25px 8%;}
}

/* MICRO-ANIMATIONS, SHADOWS */
.card, .testimonial-card, .events-list li, .services li, .features li {
  transition: box-shadow 0.21s, transform 0.17s;
}
.card:hover, .testimonial-card:hover, .events-list li:hover, .services li:hover, .features li:hover {
  box-shadow: 0 6px 36px 0 rgba(241,180,52,0.08), 0 2px 19px rgba(33,72,107,0.13);
  transform: translateY(-2px);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #21486B;
  color: #fff;
  width: 100vw;
  z-index: 1300;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 26px 15px 22px 15px;
  box-shadow: 0 -2px 20px rgba(33,72,107,0.09);
  animation: slideInBanner 0.48s cubic-bezier(0.44,0,0.3,1);
}
.cookie-banner__text {
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-right: 18px;
  max-width: 470px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-banner__btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 9px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.19s;
  outline: none;
}
.cookie-banner__btn.accept {
  background: #F1B434;
  color: #21486B;
}
.cookie-banner__btn.reject {
  background: #fff;
  color: #21486B;
  border: 1.5px solid #F1B434;
}
.cookie-banner__btn.settings {
  background: #D9E5EA;
  color: #21486B;
}
.cookie-banner__btn:hover,
.cookie-banner__btn:focus {
  background: #F1B434;
  color: #21486B;
  box-shadow: 0 4px 16px rgba(241,180,52,0.10);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 7px;
    padding: 17px 7px 17px 7px;
  }
  .cookie-banner__actions { gap: 7px; }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(33,72,107,0.54);
  z-index: 1401;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.35s cubic-bezier(0.44,0,0.3,1);
}
.cookie-modal__content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 28px rgba(33,72,107,.16);
  padding: 35px 42px 32px 42px;
  max-width: 470px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal .cookie-modal__close {
  position: absolute;
  top: 17px;
  right: 17px;
  background: #D9E5EA;
  color: #21486B;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 1.4rem;
  padding: 6px 9px;
  transition: background 0.18s;
}
.cookie-modal .cookie-modal__close:hover, .cookie-modal .cookie-modal__close:focus {
  background: #F1B434;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  width: 100%;
}
.cookie-modal__category label {
  font-size: 1rem;
  color: #21486B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-modal__category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #F1B434;
  border-radius: 3px;
}
.cookie-modal__category .essential {
  color: #999;
  font-size: 0.96rem;
  font-style: italic;
}
.cookie-modal__actions {
  display: flex;
  gap: 13px;
  margin-top: 12px;
}
.cookie-modal__btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 9px 23px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  background: #21486B;
  color: #fff;
  transition: background 0.21s, color 0.16s, box-shadow 0.16s;
}
.cookie-modal__btn.secondary {
  background: #F1B434;
  color: #21486B;
}
.cookie-modal__btn:hover, .cookie-modal__btn:focus,
.cookie-modal__btn.secondary:hover, .cookie-modal__btn.secondary:focus {
  background: #D9E5EA;
  color: #21486B;
}

@media (max-width: 600px) {
  .cookie-modal__content {
    padding: 16px 7vw 20px 7vw;
    border-radius: 12px;
  }
}

/* GEOMETRIC/STRUCTURED MOTIFS: Borders, Angular Shapes */
.card, .cta, .testimonial-card, .highlight-boxes > div, .events-list li, .features li, .services li {
  border-radius: 13px 30px 13px 30px/22px 8px 22px 8px;
  /* top-left/bottom-right = more round for geometric vibes */
}

/* GEOMETRIC OVERLAY for HERO */
.hero:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 60px;
  background: #F1B434;
  border-radius: 0 0 100px 100px;
  opacity: 0.15;
  z-index: 0;
}
@media (max-width: 700px) {
  .hero:after { display: none; }
}

/* TEXT & UTILITY */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section h2, .text-section h3 { margin-bottom: 10px; }

/* Type scale and geometric font variants */
.display { font-family: 'Montserrat', Arial, sans-serif; }
.body-text { font-family: 'Open Sans', Arial, sans-serif; }

/* Form fields, if needed */
input, textarea, select {
  border-radius: 8px;
  border: 1.5px solid #D9E5EA;
  background: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 10px 14px;
  margin-bottom: 14px;
  color: #21486B;
  transition: border-color 0.19s;
}
input:focus, textarea:focus, select:focus {
  border-color: #F1B434;
  outline: none;
}

/* RESPONSIVENESS & FLEX MODIFIERS */
@media (max-width: 950px) {
  .content-wrapper, .text-section, .team-overview, .highlight-boxes, .card-container, .events-list ul {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.26rem; }
  h2 { font-size: 1.05rem; }
  .section, section { padding: 17px 0; margin-bottom: 20px; }
  .hero { min-height: 95px; padding-bottom: 16px; }
}

/* ACCESSIBILITY: Focus visible */
a:focus-visible, button:focus-visible, .cta:focus-visible, .cookie-banner__btn:focus-visible {
  outline: 2.5px solid #F1B434;
  outline-offset: 2px;
}

/* Hide visually but accessible (for modals): */
.sr-only, .visually-hidden {
  position: absolute;
  left: -9999px;
  height: 1px; width: 1px;
  overflow: hidden;
}

/* FORCE FLEXBOX LAYOUT */
.features ul, .services ul, .highlight-boxes,
.card-container, .content-grid, .text-image-section, .team-overview, .events-list ul, .post-list ul, .event-highlights ul, .faq-list ul, .schedule-list ul {
  display: flex;
}
.features ul, .services ul, .highlight-boxes, .content-grid, .card-container {
  flex-wrap: wrap;
}
.card-container, .content-grid, .highlight-boxes, .team-overview {
  gap: 24px;
}
.text-image-section {
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .features ul, .services ul, .highlight-boxes, .card-container, .content-grid, .team-overview {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section, .content-grid { flex-direction: column; gap: 15px; }
}

/********** END OF CSS *********/