/* =========================
   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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #F4F4F4;
  color: #222;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #94C11F;
  outline-offset: 2px;
}
ul, ol {
  margin-bottom: 1.25em;
  padding-left: 1.5em;
}
img {
  max-width: 100%;
  display: block;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

/* =========================
   Typography
   ========================= */
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:700,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #222;
  background: #F4F4F4;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Times, serif;
  color: #204060;
  font-weight: 700;
  margin-bottom: 0.67em;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; line-height: 1.25; }
h3 { font-size: 1.5rem; line-height: 1.3; }
h4 { font-size: 1.13rem; }
.subtitle {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #94C11F;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

strong {
  font-weight: 700;
}

/* =========================
   Layout Containers
   ========================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(32,64,96,0.08), 0 1.5px 4px 1px rgba(148,193,31,0.05);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 40px 0 rgba(32,64,96,0.14), 0 4px 12px 2px rgba(148,193,31,0.12);
  transform: translateY(-4px) scale(1.01);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 3px 20px 0 rgba(32,64,96,0.07);
  border-left: 6px solid #94C11F;
  font-size: 1.1rem;
}
.testimonial-card p {
  color: #102030;
  margin-bottom: 0;
}
.testimonial-card span {
  display: block;
  font-size: 0.95rem;
  color: #204060;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =========================
   Artistic & Creative Styling
   ========================= */
.hero {
  background: linear-gradient(90deg, #204060 65%, #94C11F 110%);
  color: #fff;
  min-height: 330px;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 10px 60px 0 rgba(32,64,96,0.24);
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  color: #fff;
  font-size: 2.7rem;
  text-shadow: 0 2px 20px rgba(148,193,31,0.16);
}
.hero .subtitle {
  color: #F4F4F4;
  font-size: 1.25rem;
}

.cta-section {
  text-align: center;
  background: #94C11F;
  padding: 40px 0;
  border-radius: 32px;
  margin-bottom: 48px;
}
.cta-section .cta-btn {
  margin-top: 0;
}

/***** Creative Accent Lines *****/
h2, h3 {
  position: relative;
  padding-left: 20px;
}
h2:before, h3:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 12px;
  width: 7px;
  border-radius: 7px;
  background: #94C11F;
}

/* Artistic border for about sections */
.text-section {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(32,64,96,0.05);
  padding: 28px 22px 32px 22px;
  margin-bottom: 36px;
  border-left: 6px solid #94C11F;
}

/***** Icon List Styling *****/
ul li {
  margin-bottom: 18px;
  position: relative;
  padding-left: 0;
  color: #393939;
  line-height: 1.5;
  font-size: 1.04rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
ul li img {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: -5px;
}
ul li strong {
  color: #204060;
}

ol {
  margin-bottom: 1.25em;
  padding-left: 1.2em;
}
ol li {
  margin-bottom: 13px;
  font-size: 1.04rem;
}

/***** Buttons & Links *****/
.cta-btn, .btn {
  background: #204060;
  color: #fff;
  font-family: 'Roboto Slab', Times, serif;
  font-weight: 700;
  font-size: 1.16rem;
  padding: 13px 34px;
  border-radius: 26px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-block;
  box-shadow: 0 2px 11px rgba(32,64,96,0.13);
  transition: background 0.18s, box-shadow 0.2s, transform 0.15s;
  letter-spacing: 0.03em;
  border: none;
}
.cta-btn.primary {
  background: #94C11F;
  color: #13203A;
}
.cta-btn:hover, .cta-btn:focus, .btn:hover, .btn:focus {
  background: #13203A;
  color: #94C11F;
  box-shadow: 0 5px 24px rgba(32,64,96,0.22);
  transform: translateY(-2px) scale(1.03);
}
.cta-section .cta-btn.primary:hover, .cta-section .cta-btn.primary:focus {
  background: #2A8F36;
  color: #fff;
}
nav a {
  padding: 8px 12px;
  border-radius: 18px;
  transition: background 0.18s, color 0.15s;
}
nav a:hover, nav a:focus {
  background: #94C11F;
  color: #204060;
}

/***** Main Navigation *****/
header {
  background: #fff;
  box-shadow: 0 1.5px 12px 0 rgba(32,64,96,0.07);
  position: relative;
  z-index: 49;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  position: relative;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0 35px 0 0;
  padding: 0;
}
.main-nav ul li {
  margin-bottom: 0;
}
.main-nav a img {
  height: 44px;
  width: auto;
}
.main-nav .cta-btn {
  background: #94C11F;
  color: #204060;
  margin-left: 14px;
}
.main-nav .cta-btn:hover {
  background: #204060;
  color: #94C11F;
}

/***** Footer *****/
footer {
  background: #204060;
  color: #fff;
  padding: 38px 0 22px 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -6px 46px 0 rgba(32,64,96,0.08);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-content a img {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
}
.footer-content nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
}
.footer-content nav a {
  color: #F4F4F4;
  font-weight: 600;
  font-size: 1rem;
}
.footer-content nav a:hover {
  color: #94C11F;
}
.footer-content address {
  font-style: normal;
  color: #c0ead7;
  font-size: 0.95rem;
  margin-top: 8px;
  line-height: 1.6;
}

/***** Card & Feature Styles *****/
.card {
  min-width: 240px;
  flex: 1 1 280px;
  max-width: 350px;
  padding: 24px;
  margin-bottom: 24px;
}
.feature-item strong {
  color: #204060;
}

/***** Embedded Map Placeholder *****/
.embedded-map {
  background: #e0f3ce;
  border-radius: 10px;
  padding: 26px;
  color: #204060;
  font-family: 'Roboto Slab', serif;
  font-size: 1.08rem;
  box-shadow: 0 3px 20px 0 rgba(148,193,31,0.10);
  margin-bottom: 16px;
}

/***** Thank you section *****/
.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
}

/* =========================
   Mobile Menu Styles
   ========================= */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 2.2rem;
  z-index: 70;
  color: #204060;
  background: #fff;
  border-radius: 10px;
  padding: 5px 16px;
  border: 2px solid #204060;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:focus {
  background: #94C11F;
  color: #fff;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f4f4f4;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.33,1.02,.68,1), opacity 0.28s;
  box-shadow: 0 8px 44px 0 rgba(32,64,96,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 29px;
  background: #204060;
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 43px;
  height: 43px;
  font-size: 1.7rem;
  z-index: 1000;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #94C11F;
  color: #204060;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-top: 100px;
  padding: 33px 38px;
}
.mobile-nav a {
  color: #204060;
  font-size: 1.35rem;
  padding: 15px 0;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.18s, color 0.15s;
  width: 100%;
  display: block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #94C11F;
  color: #fff;
  outline: none;
}
@media (max-width: 1000px) {
  .main-nav ul {
    gap: 11px;
    margin: 0 17px 0 0;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 6px;
  }
  .footer-content {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 820px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .main-nav ul {
    display: none;
  }
  .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 820px) {
  .main-nav ul {
    display: none;
  }
}
/* =========================
   Responsive Layouts (Mobile-First)
   ========================= */
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .hero {
    border-radius: 0 0 22px 22px;
    min-height: 200px;
    padding: 34px 0 38px 0;
  }
  .section {
    margin-bottom: 42px;
    padding: 24px 6px;
  }
  .content-wrapper,
  .text-section {
    gap: 16px;
    padding: 18px 8px 20px 8px;
  }
  .testimonial-card {
    padding: 15px;
    font-size: 1rem;
    gap: 10px;
  }
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-content {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
}

/***** Cookie Consent Banner *****/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #204060;
  color: #fff;
  padding: 22px 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 24px rgba(32,64,96,0.15);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  opacity: 1;
  transition: transform 0.3s, opacity 0.26s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  margin: 0;
  color: #fff;
  font-size: 1.03rem;
  text-align: center;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  background: #94C11F;
  color: #204060;
  border-radius: 16px;
  border: none;
  font-family: 'Roboto Slab', Times, serif;
  font-size: 1.04rem;
  font-weight: 600;
  padding: 10px 24px;
  margin-bottom: 0;
  box-shadow: 0 1.5px 7px 0 rgba(32,64,96,0.08);
  transition: background 0.15s, color 0.15s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #204060;
  color: #94C11F;
}
.cookie-btn.settings {
  background: #fff;
  color: #204060;
  border: 2px solid #94C11F;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #94C11F;
  color: #fff;
}

/***** Cookie Preferences Modal *****/
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(32,64,96,0.32);
  z-index: 12000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 40px 28px;
  max-width: 420px;
  width: 95vw;
  color: #204060;
  box-shadow: 0 8px 40px 0 rgba(32,64,96,0.22);
  animation: popupIn 0.3s cubic-bezier(.28,.84,.43,1) forwards;
}
@keyframes popupIn {
  from { transform: translateY(60px) scale(0.97); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: #204060;
  margin-bottom: 10px;
  font-size: 1.32rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 14px;
}
.cookie-category label {
  font-size: 1.04rem;
  color: #13203A;
  font-weight: 600;
  margin-left: 8px;
  user-select: none;
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: #94C11F;
}
.cookie-modal .cookie-btn {
  margin-top: 14px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  color: #204060;
  font-size: 1.65rem;
  border: none;
  border-radius: 50%;
  transition: color 0.1s;
  z-index: 12001;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #94C11F;
}

/****** Artistic Decors (Background Elements) ******/
.hero:after {
  content: '';
  position: absolute;
  bottom: -60px; right: 10vw;
  width: 170px; height: 90px;
  background: rgba(148,193,31,0.1);
  border-radius: 65% 80% 45% 17%;
  z-index: 0;
  pointer-events: none;
}
.hero:before {
  content: '';
  position: absolute;
  top: -40px; left: 10vw;
  width: 85px; height: 80px;
  background: rgba(32,64,96,0.13);
  border-radius: 80% 54% 33% 64%;
  z-index: 0;
  pointer-events: none;
}

/* ===============
   Animations
   =============== */
.cta-btn, .btn, .cta-section .cta-btn, .mobile-menu-toggle, .cookie-btn, .cookie-modal .close-modal {
  transition: all 0.18s cubic-bezier(.55,.1,.68,1.24);
}
.card, .testimonial-card, .card:hover {
  transition: box-shadow 0.2s cubic-bezier(.36,1.18,.64,1), transform 0.17s cubic-bezier(.39,1.31,.41,.85);
}
/****** Utilities ******/
.flex-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
.gap-32 { gap: 32px !important; }

/***** Accessibility Color Contrast *****/
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #13203A !important;
  background: #fff !important;
}

/***** Spacing Enforcements (Mandatory) *****/
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/***** Prevent Overlap and Maintain Gaps *****/
.card, .testimonial-card, .text-section {
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .card, .testimonial-card, .text-section {
    margin-bottom: 17px;
  }
}

/***** Remove Forbidden Properties *****/
/* (No grid, no columns, no absolute for content cards, only for decor) */
/*
  All layout containers use only flex and flex-wrap.
*/
