/* --- 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,
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { line-height: 1.15; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; background: #F1F7FA; color: #112145; font-family: 'Open Sans', Arial, sans-serif; font-size: 16px; }
article, aside, footer, header, nav, section, main {
  display: block;
}
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; background-color: transparent; }
button, input, select, optgroup, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.2;
  margin: 0;
  border-radius: 0;
  outline: none;
  box-sizing: border-box;
}
*:focus { outline: 2px solid #C77808; outline-offset: 2px; }

/* --- BRAND COLORS (as CSS custom properties) --- */
:root {
  --brand-primary: #2552A3;
  --brand-dark-primary: #20468A;
  --brand-secondary: #F1F7FA;
  --brand-bg: #FFFFFF;
  --brand-accent: #F7A41C;
  --brand-accent-dark: #C77808;
  --brand-text: #112145;
  --brand-card: #FFFFFF;
  --brand-shadow: 0 2px 12px rgba(37, 82, 163, 0.12);
}

/* --- TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700,900&family=Open+Sans:wght@400;600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: var(--brand-primary);
  letter-spacing: -0.5px;
}
h1 { font-size: 2.75rem; line-height: 1.1; margin-bottom: 18px; }
h2 { font-size: 2rem; font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
h3 { font-size: 1.22rem; font-weight: 700; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1rem; }</h4,>
p, li, label, input, select, textarea, .subheadline {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: var(--brand-text);
  font-size: 1rem;
}
strong, b { font-weight: bold; }

.subheadline {
  font-size: 1.15rem;
  color: var(--brand-dark-primary);
  margin-top: 0;
  margin-bottom: 18px;
  font-weight: 600;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/* --- FLEX & ALIGNMENT CLASSES / PAGE SECTIONS --- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: var(--brand-card); border-radius: 16px; box-shadow: var(--brand-shadow); padding: 20px; min-width: 220px; max-width: 100%; }
.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; flex-direction: column; align-items: center; gap: 20px; background: #fff; color: #1b2c54; padding: 32px 26px 24px 26px; border-radius: 18px; box-shadow: 0 6px 36px rgba(37,92,163,0.10); margin-bottom: 20px; min-width: 250px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .section { padding: 24px 0px; margin-bottom: 32px; }
  .content-wrapper, .feature-item, .card, .text-section {
    gap: 14px;
  }
  .content-grid, .card-container {
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: var(--brand-bg);
  box-shadow: 0 4px 18px rgba(37,82,163,0.07);
  z-index: 1030;
  position: sticky; top: 0; left: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 72px;
  position: relative;
}
header a img {
  height: 38px;
  margin-right: 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 27px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-primary);
  padding: 6px 0;
  transition: color 0.18s cubic-bezier(0.7,0,0.84,0.2);
  border-bottom: 2.5px solid transparent;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  color: var(--brand-accent-dark);
  border-bottom: 2.5px solid var(--brand-accent);
}

.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 100px;
  padding: 13px 29px;
  box-shadow: 0 3px 18px rgba(37,82,163,0.10);
  border: none;
  cursor: pointer;
  transition: background 0.18s cubic-bezier(.4,0,.2,1), color 0.14s;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-accent);
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: var(--brand-accent);
  color: #fff;
  font-size: 2.3rem;
  border: none;
  border-radius: 6px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 12px rgba(247,164,28,0.05);
  cursor: pointer;
  z-index: 1200;
  margin-left: 18px;
  transition: background 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-dark-primary);
}

@media (max-width: 996px) {
  header .container {
    gap: 11px;
  }
  header nav {
    gap: 16px;
  }
}
@media (max-width: 860px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle { display: flex; }
  .btn-primary { padding: 11px 22px; font-size: 1rem; }
}

/* --- MOBILE MENU SLIDING NAV --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh; width: 100vw;
  background: #fff;
  box-shadow: 0 30px 80px rgba(37,82,163,0.16);
  z-index: 1350;
  transform: translateX(-110vw);
  transition: transform 0.36s cubic-bezier(.86,0,.07,1);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 22px 8px 0;
  background: var(--brand-primary);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 2.3rem;
  width: 48px; height: 48px;
  cursor: pointer;
  transition: background 0.12s;
  box-shadow: 0 2px 12px rgba(37,82,163, 0.10);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  font-size: 1.3rem;
  padding: 10px 36px 36px 36px;
  width: 90vw;
}
.mobile-nav a {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  padding: 9px 0;
  border-bottom: 2.5px solid transparent;
  width: 100%;
  transition: color 0.18s, border-bottom 0.21s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--brand-accent-dark);
  border-bottom: 2.5px solid var(--brand-accent);
}

@media (min-width: 861px) {
  .mobile-menu { display: none !important; }
  .mobile-menu.active { display: none !important; }
}

/* --- HERO SECTION --- */
.hero {
  padding: 70px 0 38px 0;
  background: linear-gradient(101deg, var(--brand-secondary) 83%, #f8e5c5 120%);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 21px;
}
.hero h1 {
  font-size: 2.3rem;
  max-width: 650px;
}
.hero .btn-primary {
  margin-top: 10px;
}
@media (max-width: 700px) {
  .hero {
    padding: 35px 0 22px 0;
  }
  .hero h1 { font-size: 1.45rem; }
}

/* --- FEATURE SECTIONS --- */
.features, .services-summary, .services {
  background: var(--brand-secondary);
  border-radius: 30px;
  box-shadow: 0 4px 30px rgba(37,82,163,0.05);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: var(--brand-card);
  border-radius: 16px;
  box-shadow: 0 3px 13px rgba(37,82,163,.08);
  flex: 1 1 180px;
  min-width: 220px;
  max-width: 340px;
  padding: 26px 21px 21px 21px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.21s;
  gap: 12px;
}
.feature-grid > div:hover {
  box-shadow: 0 9px 26px rgba(247,164,28,0.16);
  transform: translateY(-5px) scale(1.02);
}
.feature-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 7px;
}

/* --- EVENT CARDS, LISTS --- */
.event-list, .event-listings .event-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 0 0;
}
.event-card {
  background: var(--brand-card);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(37,82,163,0.09);
  padding: 22px 20px 20px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.13s;
}
.event-card h3 { color: var(--brand-dark-primary); font-size: 1.08rem; }
.event-card a { font-weight: 800; color: var(--brand-accent-dark); margin-top: 4px; font-size: 1rem; transition: color 0.15s; }
.event-card a:hover { color: var(--brand-primary); text-decoration: underline; }
.event-card:hover, .event-card:focus-within {
  box-shadow: 0 7px 23px rgba(37,82,163,0.15);
  transform: translateY(-3px) scale(1.013);
  z-index: 1;
}

/* --- TESTIMONIALS --- */
.testimonials { background: #fff; border-radius: 24px; }
.testimonials h2 { color: var(--brand-primary); }
.testimonial-slider {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  color: #1b2c54;
  border-radius: 18px;
  box-shadow: 0 8px 36px rgba(37,92,163,0.10);
  min-width: 250px;
  flex: 1 1 220px;
  max-width: 370px;
  transition: box-shadow 0.19s, transform 0.11s;
}
.testimonial-card p {
  font-size: 1.03rem;
  line-height: 1.45;
  color: #253c6e;
  margin-bottom: 14px;
  font-weight: 600;
}
.testimonial-card span {
  font-size: 1rem;
  color: #616d84;
}
.testimonial-card strong { color: var(--brand-primary); }
.testimonial-card:hover {
  box-shadow: 0 14px 60px rgba(37,82,163,0.15);
  transform: scale(1.027) translateY(-4px);
}

/* --- NEWSLETTER SIGNUP --- */
.newsletter-signup { background: linear-gradient(90deg, #fff 68%, #f8e5c5 107%); border-radius: 26px; box-shadow: 0 6px 32px rgba(247,164,28,.08); }
.newsletter-signup .btn-primary { margin-top: 10px; }

/* --- FILTER BARS, INPUTS, FORMS --- */
.event-search {
  background: #fff;
  box-shadow: 0 4px 22px rgba(37,82,163,0.08);
  border-radius: 24px;
}
.event-search-bar, .filter-bar {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
}
.event-search-bar input, .event-search-bar select,
.filter-bar select, .filter-bar input {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 13px;
  border: 2px solid var(--brand-secondary);
  border-radius: 8px;
  background: #F6F7FB;
  color: var(--brand-text);
  transition: border .15s, box-shadow .15s;
  min-width: 140px;
  outline: none;
}
.event-search-bar input:focus, .event-search-bar select:focus,
.filter-bar select:focus {
  border: 2px solid var(--brand-primary);
  background: #fff;
  box-shadow: 0 2px 9px rgba(37,82,163,0.08);
}
.event-search-bar button, .filter-bar button {
  background: var(--brand-accent);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 100px;
  padding: 11px 26px;
  cursor: pointer;
  transition: background 0.18s;
}
.event-search-bar button:hover, .event-search-bar button:focus {
  background: var(--brand-primary);
}

@media (max-width: 700px) {
  .event-search-bar, .filter-bar {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .event-list, .event-listings .event-list, .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
}

/* --- TEXT-SECTION AND FAQ --- */
.text-section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 8px rgba(37,82,163,0.04);
  padding: 12px 14px 10px 16px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.faq-list h3 {
  font-size: 1.05rem; color: var(--brand-accent-dark); margin-bottom: 5px; margin-top: 18px;
  font-weight: 800;
}
.faq-list p { font-size: 1rem; margin-bottom: 12px; color: var(--brand-text); }

.address-block {
  background: #F7A41C09;
  border-left: 5px solid var(--brand-accent);
  padding: 18px 26px;
  margin: 20px 0 14px 0;
  border-radius: 9px;
  font-size: 1.03rem;
}

/* --- LEGAL AND POLICY PAGES --- */
.legal, .confirmation {
  background: #fff;
  border-radius: 21px;
  padding: 30px 20px;
  box-shadow: 0 1.5px 16px rgba(37,82,163,0.08);
}
.legal h1, .confirmation h1 {
  color: var(--brand-accent-dark); font-size: 2rem; margin-bottom: 18px;
}

/* --- CALENDAR WIDGET --- */
.calendar-widget {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  margin: 18px 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 10px rgba(37,82,163,0.05);
  padding: 18px;
}
.calendar-widget .btn-primary {
  margin-top: 0;
}
@media (max-width: 600px) {
  .calendar-widget { flex-direction: column; gap: 14px; }
}

/* --- BLOG & POSTS --- */
.blog-posts .post-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.post-list .text-section {
  background: #f8fafd;
  border-left: 4px solid var(--brand-primary);
  border-radius: 14px;
  box-shadow: 0 3px 11px rgba(37,82,163,0.06);
  padding: 16px 20px;
  min-width: 220px;
  max-width: 350px;
  flex: 1 1 210px;
}
.featured-articles {
  background: #fffbea;
  border: 1.5px solid var(--brand-accent);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 16px;
}
.featured-articles h3 { font-size: 1.07rem; color: var(--brand-accent-dark); }
.featured-articles ul { margin: 0 0 0 6px; }
.featured-articles li { margin-bottom: 3px; }
.featured-articles a {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.15s;
}
.featured-articles a:hover { color: var(--brand-accent-dark); text-decoration: underline; }

/* --- TEAM, STATS --- */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 21px 0 0 0;
}
.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 18px 0 0 0;
}
.stat-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(37,82,163,0.08);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--brand-primary);
  font-size: 1.17rem;
  padding: 21px 16px;
  min-width: 180px;
  text-align: center;
}

/* --- FOOTER --- */
footer {
  background: var(--brand-dark-primary);
  color: #fff;
  margin-top: 75px;
  padding: 44px 0 20px 0;
}
footer .container {
  flex-direction: row;
  gap: 42px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer nav a { color: #fff; font-weight: 700; font-family: 'Montserrat', sans-serif; font-size: 1rem; opacity: 0.9; padding: 4px 0; transition: color 0.18s; }
footer nav a:hover { color: var(--brand-accent); text-decoration: underline; }
.footer-contact {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
  opacity: 0.96;
}
.footer-contact a { color: var(--brand-accent); font-weight: 700; }
.footer-legal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}
.footer-legal a { color: #F7A41C; font-size: 0.97rem; opacity: 0.89; }
.footer-legal a:hover { color: #fff; opacity: 1; }

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 12000;
  width: 100vw;
  background: linear-gradient(90deg, #fff 85%, #f8e5c5 110%);
  color: var(--brand-text);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  box-shadow: 0 -3px 22px rgba(37,82,163,0.07);
  padding: 18px 24px;
  min-height: 65px;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}
.cookie-banner button {
  border: none;
  border-radius: 26px;
  font-size: 1rem;
  padding: 9px 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.14s, color 0.16s;
}
.cookie-banner .accept-btn {
  background: var(--brand-primary); color: #fff;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus { background: var(--brand-accent-dark); }
.cookie-banner .reject-btn {
  background: #eeefeb;
  color: var(--brand-accent-dark);
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus { background: #e7dcd1; color: var(--brand-primary); }
.cookie-banner .settings-btn {
  background: #fffbea;
  color: var(--brand-accent-dark);
  border: 2px solid var(--brand-accent);
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus { background: var(--brand-accent); color: #fff; border-color: var(--brand-accent); }

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 11px; padding: 15px 10px; font-size: 0.98rem; }
  .cookie-banner .cookie-actions { margin-left: 0; }
}

/* --- COOKIE MODAL POPUP --- */
.cookie-modal {
  position: fixed;
  z-index: 17000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(17,33,69,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  color: var(--brand-text);
  border-radius: 22px;
  max-width: 420px;
  padding: 32px 32px 20px 32px;
  box-shadow: 0 14px 90px rgba(37,82,163,0.22);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.38rem;
  color: var(--brand-accent-dark);
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #F1F7FA;
  border-radius: 12px;
  padding: 14px 14px;
  margin-bottom: 11px;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--brand-accent);
}
.cookie-category .always-enabled {
  color: var(--brand-text);
  font-weight: 700;
  opacity: 0.65;
  padding-left: 7px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 17px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 12px; right: 16px;
  background: var(--brand-accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  width: 32px; height: 32px;
  font-size: 1.26rem;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  background: var(--brand-primary);
}
@media(max-width:480px){
  .cookie-modal-content { max-width: 97vw; padding: 18px 5vw 10px 5vw; }
}

/* --- TRANSITIONS, SHADOWS, EFFECTS --- */
.card, .event-card, .feature-grid > div, .testimonial-card, .calendar-widget, .text-section, .stat-grid > div, .post-list .text-section {
  transition: box-shadow 0.2s cubic-bezier(.7,0,.7,1), transform 0.13s cubic-bezier(.7,0,.7,1);
}
a, button, .btn-primary {
  cursor: pointer;
  transition: color 0.16s, background 0.16s, border 0.16s;
}
h1, h2, h3, .btn-primary, nav a, .event-card a, .mobile-nav a {
  text-transform: none;
  letter-spacing: -.01em;
}
/* --- MISC --- */
::-webkit-input-placeholder { color: #8294b5; opacity: 1; }
::-moz-placeholder { color: #8294b5; opacity: 1; }
:-ms-input-placeholder { color: #8294b5; opacity: 1; }
::placeholder { color: #8294b5; opacity: 1; }

/* --- RESPONSIVE TYPOGRAPHY & SPACING --- */
@media (max-width: 620px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .container, .content-wrapper {
    padding: 0 3vw;
    gap: 8px;
  }
  .section { padding: 12px 0; margin-bottom: 20px; }
}

/* --- Z-INDEX SAFETY LAYERS --- */
header { z-index: 1030; }
.mobile-menu { z-index: 1350; }
.cookie-banner { z-index: 12000; }
.cookie-modal { z-index: 17000; }

/* --- GEOMETRIC DECORATIVE SHAPES (optional) --- */
.hero:before, .features:before {
  content: '';
  display: block;
  position: absolute;
  left: -90px; top: 22%;
  width: 110px; height: 110px;
  background: var(--brand-accent);
  opacity: 0.08;
  border-radius: 40% 63% 50% 70%/42% 46% 62% 47%;
  z-index: 0;
  pointer-events: none;
}
.hero:after {
  content: '';
  display: block;
  position: absolute;
  right: -110px; top: 29%;
  width: 78px; height: 78px;
  background: var(--brand-primary);
  opacity: 0.09;
  border-radius: 64% 33% 31% 68%/56% 65% 38% 49%;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero:before, .hero:after, .features:before { display: none; }
}

/* --- UTILITY --- */
.d-none { display: none !important; }
