/* -------------------- CSS RESET & BASE -------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #154360;
  background: #FFF;
  min-height: 100vh;
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
  background-color: #F5F7FA;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #154360;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #7FCCAB;
}
ul, ol {
  margin-left: 24px;
}
ul li, ol li {
  margin-bottom: 8px;
}
strong { font-weight: bold; }

/* ------------------- BRAND FONTS ------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Verdana, sans-serif;
  color: #154360;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 24px; }
h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; }
h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 14px; }
.section h2, .section h1 { margin-top: 0; }

p, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #223139;
}

/* -------------- CONTAINER & LAYOUT ---------------- */
.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(21,67,96, 0.04), 0 2px 8px 0 rgba(127,204,171,0.03);
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 10px;
  }
}


/* -------------- HEADER & NAVIGATION ---------------- */
header {
  background: #fff;
  border-bottom: 3px solid #7FCCAB;
  box-shadow: 0 2px 12px rgba(127,204,171,0.08);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s, color 0.2s;
  color: #154360;
}
.main-nav a:hover, .main-nav a:focus {
  color: #7FCCAB;
  border-bottom: 2px solid #7FCCAB;
}

.cta-btn {
  background: #7FCCAB;
  color: #154360;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 12px 36px;
  margin-left: 20px;
  box-shadow: 0 4px 16px 0 rgba(127,204,171,0.13);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.18s;
  display: inline-block;
  letter-spacing: 0.04em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #154360;
  color: #FFF;
  box-shadow: 0 6px 24px 0 rgba(127,204,171,0.20);
  transform: translateY(-2px) scale(1.04);
}

/* -------------- MOBILE NAV TOGGLE & OVERLAY ---------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  line-height: 1;
  background: none;
  border: none;
  color: #154360;
  padding: 8px 10px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 300;
}
.mobile-menu-toggle:focus {
  background: #dff6ee;
  outline: 2px solid #7FCCAB;
}

.mobile-menu {
  display: none;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 85vw;
    max-width: 340px;
    background: #fff;
    box-shadow: -5px 0 28px rgba(21,67,96,0.12);
    z-index: 500;
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
    padding: 32px 20px 20px 28px;
  }
  .mobile-menu.open {
    transform: translateX(0%);
  }
  .mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    align-self: flex-end;
    margin-bottom: 16px;
    color: #154360;
    cursor: pointer;
    transition: background 0.12s;
    border-radius: 50%;
    width: 2.3em;
    height: 2.3em;
  }
  .mobile-menu-close:focus {
    background: #dff6ee;
    outline: 2px solid #7FCCAB;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .mobile-nav a {
    font-size: 1.17rem;
    font-weight: 600;
    padding: 14px 2px;
    color: #154360;
    border-bottom: 1px solid #e5e9ee;
    border-radius: 7px;
    transition: background 0.16s, color 0.18s;
  }
  .mobile-nav a:focus, .mobile-nav a:hover {
    background: #E3FAF2;
    color: #7FCCAB;
    outline: none;
  }
}

/* -------------- HERO SECTION ------------------- */
.hero {
  background: linear-gradient(110deg, #f5f7fa 65%, #E3FAF2 100%);
  padding-top: 60px;
  padding-bottom: 60px;
  border-radius: 0 0 44px 44px/0 0 14px 14px;
  margin-bottom: 60px;
  box-shadow: 0 8px 32px 0 rgba(127,204,171,0.09);
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  max-width: 720px;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, #154360 60%, #7FCCAB 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.04em;
}
.hero p {
  font-size: 1.18rem;
  color: #31415a;
  margin-bottom: 18px;
}
.hero .cta-btn {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 32px;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-radius: 0 0 18px 18px/0 0 7px 7px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    padding: 0;
  }
  .hero h1 {
    font-size: 1.48rem;
  }
}

/* --------- CARD & FLEXBOX PATTERNS ---------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(127,204,171,0.09);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  min-height: 180px;
  flex: 1 1 calc(33.33% - 24px);
  transition: box-shadow 0.23s, transform 0.20s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 25px rgba(21,67,96,0.13);
  transform: translateY(-5px) scale(1.03);
  z-index: 2;
}

.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;
  }
}

/* ----------- FEATURE GRIDS & ITEMS ---------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 16px;
  margin-bottom: 8px;
}
.feature-item {
  background: #E3FAF2;
  border-radius: 18px;
  box-shadow: 0 3px 9px rgba(127,204,171,0.10);
  flex: 1 1 220px;
  max-width: 330px;
  padding: 30px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 180px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.19s;
  margin-bottom: 20px;
  border: 2px solid #7FCCAB33;
  position: relative;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  border-radius: 12px;
  filter: drop-shadow(0 2px 5px #7FCCAB33);
}
.feature-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  margin-bottom: 2px;
  color: #154360;
}
.feature-item p {
  font-size: 0.98rem;
  color: #325478;
}
.feature-item:hover, .feature-item:focus-within {
  background: #dff6ee;
  box-shadow: 0 9px 34px 0 #7FCCAB33;
  transform: translateY(-5px) scale(1.03);
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 14px;
  }
  .feature-item {
    padding: 18px 10px;
    min-width: 120px;
    max-width: 100%;
  }
}
@media (max-width: 560px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* ----------- TESTIMONIAL CARDS -------------- */
.testimonials {
  background: #fff;
  padding: 44px 0 0 0;
  margin-bottom: 40px;
}
.testimonials .container {
  align-items: center;
}
.testimonials .content-wrapper {
  width: 100%;
  align-items: flex-start;
}
.testimonial-card {
  background: #F5F7FA;
  border-left: 6px solid #7FCCAB;
  border-radius: 13px;
  box-shadow: 0 1px 8px #1543600A;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, border-color 0.22s, transform 0.19s;
  color: #154360;
  font-weight: 400;
  min-height: 120px;
  max-width: 750px;
  width: 100%;
}
.testimonial-card p {
  flex: 1 1 68%;
  font-size: 1.08rem;
  color: #154360;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card div {
  flex: 0 0 auto;
  font-size: 0.98rem;
  color: #154360;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 5px 18px #7FCCAB21;
  border-left: 6px solid #154360;
  transform: translateY(-3px) scale(1.02);
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 10px;
    min-height: 80px;
  }
}

/* ------------- CONTACT INFO --------------- */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 1.05rem;
  color: #154360;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 13px;
  background: #E3FAF2;
  border-radius: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 10px;
}
.contact-info img {
  width: 1.3em;
  height: 1.3em;
  filter: none;
}
@media (max-width: 600px) {
  .contact-info {
    gap: 10px;
    flex-direction: column;
  }
  .contact-info > div {
    min-width: 0;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ------------ TEXT SECTION & CARDS ----------- */
.text-section {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #116188;
  background: #E3FAF2;
  border-left: 5px solid #7FCCAB;
  border-radius: 0 8px 8px 0;
  padding: 16px 22px;
  margin: 18px 0;
  font-weight: 500;
  box-shadow: 0 1px 6px #7FCCAB12;
}
@media (max-width: 600px) {
  .text-section {
    font-size: 0.99rem;
    padding: 9px 12px;
  }
}

/* ------------- LEGAL SECTIONS ---------------- */
.legal {
  background: #F5F7FA;
  border-radius: 18px;
  padding: 44px 32px;
  margin-bottom: 60px;
  box-shadow: 0 6px 22px #7FCCAB13;
}
.legal h1 {
  font-size: 2rem;
  margin-bottom: 18px;
}
.legal h2 {
  font-size: 1.45rem;
  margin-top: 22px;
  margin-bottom: 12px;
}
.legal ul {
  margin-bottom: 12px;
}
@media (max-width: 600px) {
  .legal {
    padding: 18px 8px;
    border-radius: 10px;
  }
}

/* --------------- FOOTER ------------------ */
footer {
  background: #154360;
  padding: 44px 0 24px 0;
  color: #fff;
  border-radius: 19px 19px 0px 0px/14px 14px 0 0;
  margin-top: 70px;
  box-shadow: 0 -4px 24px 0 #7FCCAB14;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
footer nav.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin: 12px 0 16px;
}
.footer-nav a {
  color: #7FCCAB;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 1.5px solid transparent;
  transition: color 0.16s, border-color 0.17s;
  padding: 3px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  border-bottom: 1.5px solid #fff;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  margin-top: 10px;
}
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #F5F7FA;
  font-size: 0.95rem;
  background: rgba(127,204,171,0.11);
  border-radius: 6px;
  padding: 6px 12px;
}
@media (max-width: 850px) {
  .footer-contact {
    gap: 14px 12px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 24px 0 15px 0;
    border-radius: 7px 7px 0 0/6px 6px 0 0;
  }
  .footer-contact {
    gap: 7px 2px;
    flex-direction: column;
    margin-top: 5px;
  }
  .footer-contact > div {
    font-size: 0.89rem;
    padding: 5px 6px;
  }
}

/* --------- UTILITY CLASSES ----------- */
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-1 { margin-top: 16px !important; }
.mt-3 { margin-top: 32px !important; }
.text-center { text-align: center !important; }

/* ------------- BUTTONS & LINKS -------------- */
button, .cta-btn, .mobile-menu-close, .mobile-menu-toggle {
  font-family: 'Montserrat', Arial, sans-serif;
}
button {
  cursor: pointer;
  background: #7FCCAB;
  color: #154360;
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
  box-shadow: 0 1px 8px #7FCCAB19;
}
button:hover, button:focus {
  background: #154360;
  color: #fff;
  box-shadow: 0 4px 18px #15436015;
}


/* ------------ COOKIE CONSENT BANNER ----------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  background: #154360;
  color: #fff;
  box-shadow: 0 -4px 24px 0 #15436025;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 16px;
  flex-wrap: wrap;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(.68,.35,.67,1.07), opacity 0.23s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner-content {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner p {
  font-size: 1rem;
  color: #fff;
  margin-right: 8px;
}
.cookie-banner button {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 32px;
  margin-left: 8px;
  margin-right: 0;
  min-width: 140px;
  padding: 10px 18px;
  border: none;
  box-shadow: 0 2px 8px #7FCCAB19;
  font-weight: 600;
}
.cookie-banner .accept-all {
  background: #7FCCAB;
  color: #154360;
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: #fff;
  color: #154360;
  border: 2px solid #7FCCAB;
}
.cookie-banner .reject-all {
  background: #fff;
  color: #154360;
  border: 2px solid #7FCCAB;
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: #E3FAF2;
  color: #154360;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: #fff;
  border: 2px solid #7FCCAB;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #7FCCAB;
  color: #154360;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 6px;
    gap: 12px;
  }
  .cookie-banner-content {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    width: 100%;
  }
  .cookie-banner button {
    width: 100%;
    margin-left: 0;
    margin-bottom: 7px;
  }
}

/* ---------- COOKIE SETTINGS MODAL ----------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 9200;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,67,96, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #f5f7fa;
  color: #223139;
  border-radius: 16px;
  min-width: 315px;
  max-width: 90vw;
  box-shadow: 0 8px 34px 0 #1543602d;
  padding: 36px 24px 28px 28px;
  position: relative;
  z-index: 9500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: cookieModalUp 0.33s cubic-bezier(.64,-0.28,.32,1.18);
}
@keyframes cookieModalUp {
  0% { transform: translateY(80px) scale(0.98); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  color: #154360;
  margin-bottom: 12px;
}
.cookie-settings-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 14px 0;
}
.cookie-setting-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-setting-label {
  flex: 1 1 60%;
  color: #154360;
}
.cookie-setting-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 12px;
  background: #d3ecdf;
  outline: none;
  vertical-align: middle;
  position: relative;
  transition: background 0.22s;
  cursor: pointer;
}
.cookie-setting-toggle:checked {
  background: #7FCCAB;
}
.cookie-setting-toggle:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.23s;
}
.cookie-setting-toggle:checked:before {
  transform: translateX(16px);
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.5em;
  color: #154360;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.11s;
  width: 2em; height: 2em;
}
.cookie-modal-close:focus {
  background: #dff6ee;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 15px 7px 22px 9px;
  }
}

/* ----------- ARTISTIC/CREATIVE TOUCHES ---------- */
body {
  /* Fun, creative background dots */
  position: relative;
}
body:before, body:after {
  content: '';
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  opacity: 0.14;
}
body:before {
  top: -80px; right: -100px;
  width: 210px; height: 210px;
  background: #7FCCAB;
}
body:after {
  bottom: -90px; left: -120px;
  width: 180px; height: 180px;
  background: #154360;
}

.section {
  /* Artistic paint stroke effect border */
  box-shadow: 0 8px 30px 0 #7FCCAB16, 0 2px 6px 0 #15436008;
  border: 4px solid #E3FAF2;
}

h2, h3 {
  position: relative;
  z-index: 1;
}
h2:before {
  content: '';
  display: inline-block;
  width: 68px;
  height: 10px;
  background: #7FCCAB;
  opacity: 0.45;
  border-radius: 8px;
  position: absolute;
  left: -18px;
  top: 56%;
  transform: translateY(-56%) rotate(-4deg);
  z-index: -1;
}
@media (max-width: 600px) {
  h2:before {
    width: 38px;
    height: 5px;
    left: -7px;
    top: 58%;
  }
}

/* Artistic Font Play */
h1, h2, h3 {
  letter-spacing: 0.03em;
}

/* Vibrant Underline on active nav */
.main-nav a[aria-current="page"], .footer-nav a[aria-current="page"] {
  border-bottom: 2.5px solid #154360;
  color: #7FCCAB;
}

/* Subtle fade-in effect to cards */
.card, .feature-item, .testimonial-card {
  animation: cardFadeIn 0.68s both;
}
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(36px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

/* Micro-interactions (icon tilt) */
.feature-item img, .card img {
  transition: transform 0.18s;
}
.feature-item:hover img, .feature-item:focus-within img, .card:hover img {
  transform: rotate(-6deg) scale(1.07);
}

/* ---------------------- RESPONSIVE ----------------------- */
@media (max-width: 1050px) {
  .feature-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
  .feature-item {
    flex-basis: calc(50% - 18px);
    min-width: 170px;
    max-width: 96vw;
  }
}
@media (max-width: 700px) {
  .container {
    padding-left: 7px; padding-right: 7px;
  }
  .feature-item, .card {
    min-width: 80vw;
    flex-basis: 100%;
  }
}

/* -------------- MISC TYPOGRAPHY/SCALE -------------- */
@media (max-width: 480px) {
  html { font-size: 15px; }
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1.09rem; }
  h3 { font-size: 1.01rem; }
}

/* --------------- FORMS (if future forms needed) ------------ */
input, textarea, select {
  appearance: none;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 14px;
  border: 2px solid #7FCCAB;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.17s;
  margin-bottom: 12px;
}
input:focus, textarea:focus, select:focus {
  border-color: #154360;
  outline: none;
}

/* ------------- ACCESSIBILITY ------------- */
:focus {
  outline: 2px solid #7FCCAB !important;
  outline-offset: 2px;
}


/* -------------- PRINT-FRIENDLY -------------- */
@media print {
  body, .container, .section {
    background: #fff !important;
    box-shadow: none !important;
    color: #000;
  }
  header, footer, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  .cta-btn, button { background: #fff !important; color: #000 !important; border: 1px solid #7FCCAB; }
}

/* ---- HIDE DECOR ON SMALL SCREEN for performance --- */
@media (max-width: 450px) {
  body:before, body:after { display: none; }
}

/* ---- FALLBACKS for CSS VARs ---- */
:root {
  /* Useful if custom properties are needed later */
}
