/* =====================
   CSS RESET & BASELINE
   ===================== */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  font-size: 16px;
  background: #f9fafb;
  color: #1B3C59;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #237A57;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #1B3C59;
  outline: none;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 16px;
  font-size: 1rem;
}
li {
  margin-bottom: 8px;
}

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1B3C59;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
section h1,
section h2 {
  font-weight: 900;
  color: #1B3C59;
  margin-bottom: 24px;
}
p, .text-section {
  font-size: 1.06rem;
  color: #1B3C59;
  margin-bottom: 14px;
}
strong, b {
  font-weight: 900;
}

/* =====================
   COLOR SCHEME & BRAND
   ===================== */
:root {
  --color-primary: #1B3C59;
  --color-secondary: #237A57;
  --color-accent: #F6FBF8;
  --color-bg: #FFFFFF;
  --color-text: #1B3C59;
  --color-contrast: #FFF;
  --color-border: #DDE2E7;
  --color-hover: #16724a;
  --color-focus: #174472;
  --color-danger: #D03943;
  --shadow-main: 0 6px 24px rgba(27, 60, 89, 0.07), 0 1.5px 6px rgba(27, 60, 89, 0.03);
}

/* =====================
   LAYOUT, CONTAINERS & FLEXBOX
   ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
header, footer {
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: var(--shadow-main);
}
main > section:not(.hero-section) {
  margin-top: 24px;
}

/* =====================
   HEADER + NAVIGATION
   ===================== */
header {
  background: var(--color-primary);
  color: var(--color-contrast);
  box-shadow: 0 3px 14px rgba(27,60,89,0.06);
  position: relative;
  z-index: 200;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 16px 20px;
  gap: 32px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-contrast);
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.2s;
}
header nav a:hover, header nav a.active {
  background: rgba(35,122,87,0.13);
  color: var(--color-secondary);
}
header img {
  height: 38px;
}
header .button.button-primary {
  min-width: 146px;
  text-align: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.07rem;
  background: var(--color-secondary);
  color: var(--color-contrast);
  margin-left: 20px;
  box-shadow: 0 2px 10px rgba(35,122,87,0.08);
  letter-spacing: 0.03em;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
header .button.button-primary:hover, header .button.button-primary:focus {
  background: var(--color-hover);
  color: #fff;
  box-shadow: 0 6px 20px rgba(27, 60, 89, 0.06);
  outline: none;
}

/* Hamburger Icon */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  line-height: 1;
  padding: 6px 16px;
  border-radius: 6px;
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 401;
  cursor: pointer;
  transition: background 0.16s, color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(35,122,87,0.14);
  color: var(--color-secondary);
}

/* =====================
   MOBILE MENU
   ===================== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  box-shadow: 0 16px 50px rgba(27,60,89,0.17);
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.82,.06,.19,1.16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 5000;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 18px 20px 10px 0;
  margin-right: 4px;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-secondary);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  margin-top: 10px;
}
.mobile-nav a {
  display: block;
  width: 100%;
  padding: 18px 30px;
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-contrast);
  font-weight: 800;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
  outline: none;
}

@media (max-width: 1020px) {
  header .container {
    gap: 20px;
  }
  header nav {
    gap: 12px;
  }
}

@media (max-width: 900px) {
  header nav {
    display: none;
  }
  header .button.button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================
   HERO SECTION
   ===================== */
.hero-section {
  background: linear-gradient(99deg, #F6FBF8 60%, #237A57 110%) no-repeat;
  min-height: 200px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 16px rgba(27,60,89,0.06);
}
.hero-section .container {
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  max-width: 580px;
  gap: 20px;
}
.hero-section h1 {
  color: var(--color-primary);
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.hero-section p {
  font-size: 1.17rem;
  margin-bottom: 18px;
  color: var(--color-secondary);
}
.hero-section .button.button-primary {
  margin-top: 10px;
  font-size: 1.125rem;
  padding: 14px 30px;
}

/* =====================
   FEATURE GRID / FLEX SECTIONS
   ===================== */
.feature-grid, .equipment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 12px;
  justify-content: space-between;
}
.feature-item, .equipment-item {
  background: var(--color-bg);
  box-shadow: var(--shadow-main);
  border-radius: 18px;
  padding: 36px 20px 22px 20px;
  min-width: 260px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 2.5px solid var(--color-accent);
  transition: box-shadow 0.2s, transform 0.2s, border 0.18s;
  position: relative;
}
.feature-item:hover, .equipment-item:hover {
  box-shadow: 0 16px 32px rgba(35,122,87,0.18);
  border-color: var(--color-secondary);
  transform: translateY(-4px) scale(1.01);
}
.feature-item img {
  width: 46px;
  height: 46px;
  margin-bottom: 7px;
}
.equipment-item h3 {
  color: var(--color-secondary);
  font-size: 1.175rem;
}
.equipment-item ul {
  padding-left: 1em;
  margin-bottom: 0;
  color: #444F5C;
}

@media (max-width: 950px) {
  .feature-grid, .equipment-grid {
    gap: 20px;
    justify-content: flex-start;
  }
  .feature-item, .equipment-item {
    min-width: 185px;
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .feature-grid, .equipment-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .equipment-item {
    width: 100%;
    min-width: 0;
    padding: 25px 12px 16px 14px;
  }
}

/* =====================
   CARDS & FLEX CONTAINERS
   ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-main);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, border-color 0.16s;
}
.card:hover {
  box-shadow: 0 10px 28px rgba(27, 60, 89, 0.13);
  border-color: var(--color-secondary);
}
.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: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* Testimonials (if any) */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-main);
  margin-bottom: 18px;
  border-left: 5px solid var(--color-secondary);
  color: #1B3C59;
  min-width: 250px;
  max-width: 600px;
}

/* =====================
   TABLES
   ===================== */
table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: var(--shadow-main);
  background: #fff;
  margin-top: 14px;
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}
thead tr {
  background: var(--color-primary);
  color: #fff;
}
thead th {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 16px 16px;
  border-bottom: 3px solid var(--color-secondary);
}
tbody td {
  font-size: 1rem;
  padding: 16px 14px;
  border-bottom: 1.5px solid var(--color-accent);
  color: #1B3C59;
}
td a.button {
  min-width: 106px;
  padding: 8px 16px;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  transition: background 0.2s, color 0.23s;
  border: none;
}
td a.button:hover {
  background: var(--color-hover);
}
tr:hover td {
  background: #f6fbf8;
}
/* Responsive Tables */
@media (max-width: 650px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  thead tr {
    display: none;
  }
  tr {
    margin-bottom: 28px;
    box-shadow: 0 2px 10px rgba(27, 60, 89, 0.07);
    border-radius: 12px;
    background: #fff;
  }
  td {
    padding: 14px 12px;
    font-size: 1rem;
    border-bottom: none;
    position: relative;
  }
  td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 4px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  }
}

/* =====================
   BUTTONS & INTERACTIONS
   ===================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 8px;
  background: var(--color-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.21s, box-shadow 0.19s, transform 0.18s;
  margin-right: 16px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(27,60,89,0.07);
  position: relative;
  text-align: center;
}
.button-primary {
  background: var(--color-secondary);
  color: #fff;
  font-weight: 800;
}
.button:hover, .button:focus {
  background: var(--color-hover);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(27,60,89,0.13);
  outline: none;
}
.button:active {
  background: var(--color-focus);
}

/* =====================
   FORMS (fallback for future expansion)
   ===================== */
input, select, textarea {
  border: 2px solid #dde2e7;
  border-radius: 7px;
  padding: 10px;
  font-size: 1rem;
  transition: border 0.15s;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 2px solid var(--color-secondary);
}

/* =====================
   FAQ & TEXT SECTIONS
   ===================== */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-main);
  padding: 22px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  border: 2px solid #f1f4f6;
  transition: box-shadow 0.19s, border 0.14s;
}
.faq-item:hover {
  box-shadow: 0 10px 24px rgba(35,122,87,0.18);
  border-color: var(--color-secondary);
}
.text-section {
  margin-bottom: 18px;
  color: #37465e;
  font-size: 1.05rem;
}
.transparency-badges {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 40px 0 20px 0;
  box-shadow: 0 -3px 16px rgba(27,60,89,0.08);
  margin-top: auto;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 2px 3px;
  border-radius: 4px;
  transition: background 0.15s, color 0.19s;
}
.footer-nav a:hover {
  background: rgba(35,122,87,0.14);
  color: var(--color-accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  color: var(--color-accent);
}
.footer-contact img, .contact-details img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

/* =====================
   CONTACT DETAILS & MAP
   ===================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 1.08rem;
}
.privacy-hint {
  margin-top: 8px;
  font-size: 0.97rem;
  color: #4f5c6a;
  background: #f6fbf8;
  padding: 10px 16px;
  border-radius: 8px;
}
.embedded-map {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(35,122,87,0.08);
  padding: 18px 12px;
  color: #2f4642;
}
.footer-contact p{
  color: white;
}
/* =====================
   FILTER CONTROLS
   ===================== */
.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 10px 0 14px 0;
  font-size: 1.06rem;
  color: var(--color-secondary);
  font-weight: 800;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.filter-controls span {
  background: #eaf7f1;
  padding: 6px 18px;
  border-radius: 18px;
  color: var(--color-secondary);
  font-size: 0.97rem;
  margin-right: 3px;
  transition: background 0.15s, color 0.18s;
  font-weight: 700;
}
.filter-controls span:hover {
  background: var(--color-secondary);
  color: #fff;
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-contact {
    width: 100%;
    font-size: 1rem;
  }
}
@media (max-width: 700px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero-section .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 26px 7px;
  }
  main > section.hero-section {
    margin-bottom: 28px;
  }
}

/* --- Remove Card Margins on Last Elements --- */
.card-container > .card:last-child, .feature-grid > .feature-item:last-child { margin-bottom: 0; }

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #1B3C59;
  font-size: 1rem;
  box-shadow: 0 -6px 22px rgba(27,60,89,0.13);
  z-index: 6000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px 24px 24px;
  gap: 20px;
  transition: transform 0.33s cubic-bezier(.80,.01,.17,1.14), opacity 0.29s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner__msg {
  font-size: 1rem;
  line-height: 1.45;
  max-width: 600px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner__button {
  min-width: 120px;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 7px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, box-shadow 0.14s;
  margin-right: 0;
  margin-bottom: 0;
}
.cookie-banner__accept {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(35,122,87,0.07);
}
.cookie-banner__accept:hover,
.cookie-banner__accept:focus {
  background: var(--color-hover);
  outline: none;
}
.cookie-banner__reject {
  background: #fff;
  color: var(--color-danger);
  border: 2px solid var(--color-danger);
  box-shadow: none;
}
.cookie-banner__reject:hover,
.cookie-banner__reject:focus {
  background: var(--color-danger);
  color: #fff;
  outline: none;
}
.cookie-banner__settings {
  background: #eaf7f1;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  box-shadow: none;
}
.cookie-banner__settings:hover,
.cookie-banner__settings:focus {
  background: var(--color-secondary);
  color: #fff;
  outline: none;
}
@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 10px 20px 10px;
    gap: 18px;
  }
  .cookie-banner__actions {
    width: 100%;
    gap: 12px;
  }
}

/* ================
   COOKIE MODAL
   ================ */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,60,89,0.23);
  z-index: 6500;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.27s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #1B3C59;
  border-radius: 17px;
  box-shadow: 0 10px 45px rgba(27,60,89,0.21);
  padding: 35px 28px;
  min-width: 320px;
  max-width: 90vw;
  width: 370px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalIn 0.36s cubic-bezier(.78,.01,.21,1.06) both;
}
@keyframes cookieModalIn {
  0% { transform: translateY(90px) scale(0.97); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal__header {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.23rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.cookie-modal__desc {
  font-size: 1.02rem;
  color: #38505c;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  background: #f6fbf8;
  border-radius: 7px;
  padding: 9px 16px;
}
.cookie-modal__category strong {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-secondary);
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 13px;
  background: #d9ebe5;
  position: relative;
  margin-left: 10px;
  cursor: pointer;
  flex-shrink: 0;
  border: 1.5px solid #bfe4cb;
  transition: background 0.21s, border 0.17s;
  display: flex;
  align-items: center;
}
.cookie-toggle.active {
  background: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.23s;
  box-shadow: 0 1px 4px rgba(35,122,87,0.12);
}
.cookie-toggle.active:before {
  left: 19px;
}
.cookie-modal__actions {
  margin-top: 21px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal__button {
  min-width: 105px;
  padding: 10px 15px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  background: var(--color-secondary);
  transition: background 0.16s, color 0.13s;
}
.cookie-modal__button:focus, .cookie-modal__button:hover {
  background: var(--color-hover);
  outline: none;
}
.cookie-modal__button--settings {
  background: #eaf7f1;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}
.cookie-modal__button--settings:hover,
.cookie-modal__button--settings:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* Close Button for Cookie Modal */
.cookie-modal__close {
  position: absolute;
  top: 16px;
  right: 13px;
  background: none;
  border: none;
  color: #b8bcc5;
  font-size: 1.5rem;
  z-index: 1;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: var(--color-danger);
  outline: none;
}

@media (max-width: 600px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 22px 6vw 18px 7vw;
  }
}

/* =====================
   UTILITY CLASSES
   ===================== */
.center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-12 { margin-top: 12px; }
.mb-18 { margin-bottom: 18px; }
.mb-32 { margin-bottom: 32px; }
.gap-20 { gap: 20px; }
.rounded { border-radius: 16px; }
.shadow { box-shadow: var(--shadow-main); }

/* =====================
   VISUAL BOLD GEOMETRIC ACCENTS (Decorative only)
   ===================== */
.hero-section:before {
  content: '';
  position: absolute;
  right: -100px;
  top: -54px;
  width: 220px;
  height: 140px;
  background: rgba(35,122,87,0.20);
  z-index: 0;
  border-radius: 28% 60% 38% 70%/41% 46% 62% 59%;
  pointer-events: none;
  filter: blur(12px);
  display: none;
}
@media (min-width: 920px) {
  .hero-section:before { display: block; }
}

/* =====================
   SCROLLBAR
   ===================== */
html {
  scrollbar-color: #237A57 #f6fbf8;
  scrollbar-width: thin;
}
::-webkit-scrollbar { width: 7px; background: #f6fbf8; }
::-webkit-scrollbar-thumb { background: #237A57; border-radius: 7px; }
::-webkit-scrollbar-thumb:hover { background: #1B3C59; }

/* =====================
   A11Y FOCUS STATES
   ===================== */
:focus {
  outline: 3px dashed #237A57;
  outline-offset: 2px;
}
.button:focus, input:focus, select:focus, textarea:focus {
  outline: 2.5px solid #237A57;
  outline-offset: 2.5px;
}

/* ===============
   Z-INDEX CONTROLS
   =============== */
header, .mobile-menu { z-index: 400; }
.cookie-banner, .cookie-modal-overlay { z-index: 6500; }

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