/* ========================== */
/*  CSS 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, menu, 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, 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;
  height: 100%;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #FAFAF7;
  color: #2E373A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  background-image: none;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: 8px;
}
a {
  color: #165B7A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #00516c;
  outline: none;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo 2', 'Roboto', Arial, sans-serif;
  color: #165B7A;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.13; margin-bottom: 18px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 12px; }
h3 { font-size: 1.33rem; line-height: 1.3; }
h4 { font-size: 1.125rem; }
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.125rem;
  color: #45605a;
  margin-bottom: 18px;
  font-weight: 400;
}

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

/* ========================= */
/*   HEADER + NAVIGATION    */
/* ========================= */
header {
  background: #fff;
  border-bottom: 1px solid #F3F3F3;
  position: sticky;
  top: 0;
  z-index: 1001;
  width: 100%;
  box-shadow: 0 4px 16px rgba(22,91,122,0.04);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
header img {
  height: 48px;
  margin-right: 24px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.025rem;
  color: #45605a;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.2s;
}
nav a:hover { color: #165B7A; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Baloo 2', 'Roboto', Arial, sans-serif;
  background: #FFD36B;
  color: #165B7A;
  border: none;
  border-radius: 28px;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 12px 28px;
  margin-left: 16px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(22,91,122,0.07);
  transition: background 0.23s, box-shadow 0.13s, color 0.2s;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F6E89C;
  color: #0C2F41;
  box-shadow: 0 4px 16px rgba(22,91,122,0.10);
  outline: none;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #165B7A;
  font-size: 2rem;
  display: none;
  cursor: pointer;
  z-index: 1011;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F6E89C;
}

/* =============================== */
/*      MOBILE NAVIGATION          */
/* =============================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  max-width: 100vw;
  min-width: 0;
  background: rgba(255,255,255,0.97);
  box-shadow: -4px 0 28px rgba(22,91,122,0.06);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.75,.05,.52,.92), opacity 0.15s, visibility 0.2s;
}
.mobile-menu.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: #165B7A;
  border: none;
  font-size: 2.1rem;
  padding: 10px 18px 10px 10px;
  cursor: pointer;
  border-radius: 8px;
  margin-right: 6px;
  margin-top: 16px;
  box-shadow: 0;
  align-self: flex-end;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F6E89C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 40px 32px 32px 30px;
  gap: 20px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #165B7A;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #F6E89C;
  width: 100%;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #00516c;
  background: #F6E89C;
}

@media (max-width: 1020px) {
  header .container {
    padding: 0 14px;
  }
  .container { padding: 0 10px; }
}
@media (max-width: 900px) {
  header nav { gap: 16px; }
}
@media (max-width: 768px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
  .container {
    padding: 0 7px;
  }
}

/* ================== */
/* GENERIC SECTIONS   */
/* ================== */
.section, .about-section, .services-section, .events-section, .benefits-section,
.values-section, .team-section, .testimonials-section, .cta-section, .success-section, .contact-section, .faq-section, .legal-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 28px rgba(30,46,62,0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (max-width: 600px) {
  .section, .about-section, .services-section, .events-section, .benefits-section,
  .values-section, .team-section, .testimonials-section, .cta-section, .success-section, .contact-section, .faq-section, .legal-section {
    padding: 24px 5px;
    margin-bottom: 34px;
    border-radius: 12px;
  }
}

/* Hero Section */
.hero-section {
  background: #F6E89C;
  border-radius: 0 0 24px 24px;
  padding: 60px 20px 40px 20px;
  margin-bottom: 44px;
  box-shadow: 0 8px 36px rgba(22,91,122,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section h1 {
  color: #165B7A;
  margin-bottom: 14px;
}
.hero-section .subheadline {
  color: #352300;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.hero-section .cta-btn {
  margin-left: 0;
  margin-top: 16px;
}

@media (max-width: 600px) {
  .hero-section {
    padding: 30px 7px 24px 7px;
    border-radius: 0 0 12px 12px;
    margin-bottom: 24px;
  }
  .hero-section h1 {
    font-size: 1.6rem;
  }
}

/* =================== */
/*      FLEX GRIDS     */
/* =================== */
.features-grid, .benefits-grid, .team-profiles, .event-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  width: 100%;
}
.features-grid, .benefits-grid, .team-profiles {
  justify-content: flex-start;
}
.event-list {
  flex-direction: column;
  gap: 24px;
}
.service-list {
  flex-direction: column;
  gap: 20px;
  list-style: none;
}
@media (max-width: 900px) {
  .features-grid, .benefits-grid, .team-profiles {
    gap: 18px;
  }
}
@media (max-width: 700px) {
  .features-grid, .benefits-grid, .team-profiles {
    flex-direction: column;
    gap: 14px;
  }
  .event-list, .service-list { gap: 12px; }
}

/* Feature & Benefit Cards */
.feature-item, .benefit-item, .profile {
  background: #FAFAF7;
  border-radius: 14px;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(22,91,122,0.04);
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 295px;
  margin-bottom: 20px;
  transition: box-shadow 0.26s, transform 0.17s;
  position: relative;
}
.feature-item img, .benefit-item img, .profile img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background: #FFD36B;
  object-fit: cover;
  margin-bottom: 6px;
}
.feature-item:hover, .benefit-item:hover, .profile:hover {
  box-shadow: 0 10px 30px rgba(22,91,122,0.12);
  transform: translateY(-3px) scale(1.02);
}

@media (max-width: 700px) {
  .feature-item, .benefit-item, .profile {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
}

/* Event Items */
.event-item {
  background: #FAFAF7;
  border-radius: 12px;
  padding: 20px 16px 16px 16px;
  box-shadow: 0 2px 8px rgba(22,91,122,0.04);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: box-shadow 0.20s, transform 0.16s;
}
.event-item:hover {
  box-shadow: 0 8px 24px rgba(22,91,122,0.09);
  transform: translateY(-2px) scale(1.01);
}

/* List Styling */
ul, ol {
  margin-left: 27px;
  margin-bottom: 12px;
  padding-left: 0;
}
ul li {
  margin-bottom: 7px;
}
ul li:last-child {
  margin-bottom: 0;
}

/* FAQ List */
.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list li {
  background: #f8f7f2;
  padding: 16px 18px 16px 18px;
  border-radius: 9px;
  box-shadow: 0 1.5px 5px rgba(22,91,122,0.03);
}

/* History Timeline */
.history-timeline ul {
  margin-left: 0;
  padding-left: 0;
  list-style-type: disc;
}
.history-timeline li {
  margin-bottom: 5px;
  color: #2E373A;
}

/* ============ */
/* TESTIMONIALS */
/* ============ */
.testimonials-section {
  background: #F6E89C;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  padding: 20px 24px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(22,91,122,0.08);
  color: #165B7A;
  max-width: 620px;
  width: 100%;
}
.testimonial-card p {
  font-size: 1.09rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #2E373A;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #165B7A;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.star-rating {
  color: #FFD36B;
  font-size: 1.45rem;
  letter-spacing: 3px;
  text-shadow: 0 2px 6px rgba(22,91,122,0.11);
}
@media (max-width: 750px) {
  .testimonial-card {
    max-width: 100%;
    padding: 14px 10px;
  }
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: #FFD36B;
  border-radius: 17px;
}
.cta-section h2 {
  color: #165B7A;
}
.cta-section .cta-btn {
  margin-top: 18px;
  margin-left: 0;
}
@media (max-width: 600px) {
  .cta-section {
    border-radius: 11px;
    padding: 24px 5px;
 }
}

/* SUCCESS / THANK YOU */
.success-section {
  background: #F6E89C;
  text-align: center;
  border-radius: 16px;
  max-width: 600px;
  margin: 38px auto;
  box-shadow: 0 4px 22px rgba(22,91,122,0.10);
}
.success-section h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 600px) {
  .success-section {
    padding: 16px 2px;
    max-width: 98vw;
    border-radius: 8px;
  }
}

/* ================= */
/*       FOOTER      */
/* ================= */
footer {
  background: #F8F7F2;
  box-shadow: 0 -3px 18px rgba(22,91,122,0.03);
  font-size: 0.98rem;
  color: #4B4B45;
  margin-top: 60px;
  border-radius: 24px 24px 0 0;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: center;
  padding: 34px 8px 18px 8px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-menu a {
  color: #165B7A;
  font-weight: 500;
  font-size: 1.01rem;
  transition: color 0.17s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #00516c;
}
.contact-info {
  display: flex;
  flex-direction: row;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.98rem;
}
.copyright {
  margin-top: 9px;
  color: #a9a38c;
  font-size: 0.93rem;
}

@media (max-width: 700px) {
  .footer-menu, .contact-info {
    flex-direction: column;
    gap: 9px;
    align-items: center;
    text-align: center;
  }
  footer .container { padding: 22px 2px 12px 2px; }
}

/* ========================== */
/*  LEGAL & MISCELLANEOUS     */
/* ========================== */
.legal-section {
  border-radius: 18px;
  background: #fff;
}
.legal-section h1 {
  font-size: 2.1rem;
  margin-bottom: 16px;
}
.legal-section h2 {
  font-size: 1.34rem;
  margin-top: 12px;
}
.legal-section ul {
  list-style: disc inside;
}

@media (max-width: 600px) {
  .legal-section {
    border-radius: 11px;
    padding: 18px 3px;
  }
  .legal-section h1 {
    font-size: 1.25rem;
  }
}

/* ============================== */
/*  COOKIE BANNER & PREFERENCES   */
/* ============================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fffbe5;
  border-top: 2px solid #FFD36B;
  box-shadow: 0 -5px 30px rgba(22,91,122,0.07);
  z-index: 1500;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 18px 12px;
  gap: 26px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  color: #2E373A;
  animation: cookie-banner-slideUp 0.5s cubic-bezier(.68,-0.6,.32,1.6);
  transition: opacity 0.22s, transform 0.18s;
}
@keyframes cookie-banner-slideUp {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}
#cookie-banner.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(32px);
}
#cookie-banner p {
  margin-right: 14px;
  font-size: 1rem;
}
#cookie-banner .cookie-btn {
  font-family: 'Baloo 2', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: none;
  margin: 0 5px;
  padding: 9px 20px;
  font-weight: 700;
  background: #FFD36B;
  color: #165B7A;
  cursor: pointer;
  transition: background 0.23s, color 0.11s, box-shadow 0.16s;
  box-shadow: 0 2px 6px rgba(22,91,122,0.07);
}
#cookie-banner .cookie-btn.settings {
  background: #F6E89C;
  color: #165B7A;
}
#cookie-banner .cookie-btn:hover, #cookie-banner .cookie-btn:focus {
  background: #165B7A;
  color: #FFD36B;
  box-shadow: 0 8px 32px rgba(22,91,122,0.18);
}

@media (max-width: 720px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 14px 6px;
  }
}

/* Cookie Preferences Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(60,64,60,0.24);
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.23s, visibility 0.23s;
}
#cookie-modal.active {
  visibility: visible;
  opacity: 1;
}
#cookie-modal .cookie-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(22,91,122,0.19);
  padding: 34px 35px 23px 32px;
  max-width: 367px;
  width: 99vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: modal-popin 0.35s cubic-bezier(.42,.91,.62,1.52);
}
@keyframes modal-popin {
  0% { opacity: 0; transform: scale(0.88); }
  100% { opacity:1; transform:scale(1); }
}
#cookie-modal h3 {
  font-size: 1.27rem;
  color: #165B7A;
  margin-bottom: 16px;
}
.cookie-preferences-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-bottom: 26px;
  font-size: 1rem;
}
.cookie-preference {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-preference label {
  font-weight: 500;
  color: #2E373A;
}
.cookie-preference input[type="checkbox"] {
  accent-color: #165B7A;
  width: 18px;
  height: 18px;
}
.cookie-preference input[type="checkbox"][disabled] {
  filter: grayscale(100%);
  opacity: 0.6;
}
#cookie-modal .cookie-btn {
  margin-top: 0;
  min-width: 105px;
}
#cookie-modal .cookie-btn:last-child {
  background: #F6E89C;
}
#cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #F6E89C;
  color: #165B7A;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  width: 38px;
  height: 38px;
  cursor: pointer;
}
#cookie-modal .close-modal:hover {
  background: #FFD36B;
  color: #165B7A;
}
@media (max-width: 500px) {
  #cookie-modal .cookie-content {
    padding: 13px 7px 18px 7px;
    border-radius: 8px;
  }
}

/* ===================== */
/*  RESPONSIVE LAYOUTS   */
/* ===================== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(22,91,122,0.04);
  padding: 20px;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============================ */
/*   BUTTON & FORM STYLING      */
/* ============================ */
button, .cta-btn, .cookie-btn {
  appearance: none;
  outline: none;
}
button:focus, .cta-btn:focus, .cookie-btn:focus {
  box-shadow: 0 0 0 2px #F6E89C, 0 0 0 4px #165B7A;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 8px 11px;
  border: 1px solid #DCE3DD;
  border-radius: 6px;
  outline: none;
  margin-bottom: 14px;
  background: #FAFAF7;
  transition: border 0.21s;
}
input:focus, textarea:focus, select:focus {
  border: 1.6px solid #165B7A;
}

/* ===================== */
/*   TEAM SECTION        */
/* ===================== */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0;
}
.profile {
  background: #FAFAF7;
  border-radius: 14px;
  box-shadow: 0 1.5px 7px rgba(22,91,122,0.04);
  padding: 22px 14px 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1 1 200px;
  min-width: 170px;
  max-width: 299px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.13s;
}
.profile img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #FFD36B;
}
.profile h3 {
  font-size: 1.1rem;
  margin: 6px 0 0 0;
  color: #165B7A;
}
.profile span {
  font-size: 0.98rem;
  color: #45605a;
}
.profile p {
  color: #2E373A;
  font-size: 0.95rem;
}

/* =================== */
/* COMMUNITY STATEMENT */
/* =================== */
.community-statement {
  margin-top: 18px;
  margin-bottom: 12px;
  padding: 18px 12px 10px 16px;
  background: #F6E89C;
  border-radius: 12px;
  color: #165B7A;
  font-size: 1.075rem;
}

/* Extra Spacing for Values */
.values-section ul {
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
  gap: 6px;
  display: flex;
  flex-direction: column;
}
.values-section ul li {
  background: #FFD36B;
  color: #165B7A;
  border-radius: 9px;
  padding: 12px 15px;
  font-size: 1.01rem;
  margin-bottom: 3px;
  font-weight: 600;
}

/* =============================== */
/*  RESPONSIVE TYPOGRAPHY          */
/* =============================== */
@media (max-width: 990px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.51rem; }
  .cta-btn { font-size: 1rem; padding: 11px 20px; }
}
@media (max-width: 700px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.13rem; }
  .cta-btn { font-size: 0.95rem; padding: 10px 18px; }
}

/* =============================== */
/*      MISCELLANEOUS              */
/* =============================== */
::-webkit-scrollbar {
  width: 9px;
  background: #f8f7f2;
}
::-webkit-scrollbar-thumb {
  background: #DDD6B3;
  border-radius: 10px;
}

/* =============================== */
/*      ACCORDION (FAQ)            */
/* =============================== */
.faq-list .faq-question { cursor: pointer; font-weight: 600; }
.faq-list .faq-answer { display: none; }
.faq-list .open .faq-answer { display: block; }

/* =============================== */
/*      FONTS (GOOGLE FONTS)       */
/* =============================== */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;700&family=Roboto:wght@400;500;700&display=swap');

/* =============================== */
/*  UTILITIES                      */
/* =============================== */
.mt-2 { margin-top: 12px; }
.mt-4 { margin-top: 24px; }
.mb-2 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 24px; }

/* =============================== */
/*      TRANSITIONS                */
/* =============================== */
a, button, .cta-btn, .cookie-btn {
  transition: all 0.19s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================= */
/*  PRINT OPTIMIZATION      */
/* ========================= */
@media print {
  header, footer, .mobile-menu, #cookie-banner, #cookie-modal {
    display: none !important;
  }
  body, .container { background: #fff !important; }
}
