/* 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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #F8FAFC;
  color: #2A3542;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #719D60;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #19324C;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
li:not(:last-child) {
  margin-bottom: 8px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #19324C;
  font-weight: 700;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.35rem;
  color: #273F55;
  font-weight: 600;
  margin-bottom: 10px;
}
h4 { font-size: 1.1rem; }
.subheadline {
  font-size: 1.2rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #719D60;
  margin-bottom: 20px;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  color: #19324C;
  font-weight: 700;
}

/* CONTAINER & SPACING */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(26,58,80,.10);
  padding: 40px 20px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .container { max-width: 96vw; }
  .content-wrapper { padding: 32px 8px; }
}
@media (max-width: 768px) {
  .content-wrapper { padding: 24px 6px; }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

/* HEADER */
header {
  background: linear-gradient(90deg,#e5f6fd 0%,#f9f3ff 100%);
  box-shadow: 0 2px 16px 0 rgba(36,60,69,.04);
  border-bottom: 1.5px solid #E4EAF0;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 24px;
}
header img {
  height: 48px;
  width: auto;
  border-radius: 12px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #19324C;
  border-radius: 8px;
  padding: 7px 13px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E4EAF0;
  color: #719D60;
}
 .cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: #FFFFFF;
  background: linear-gradient(90deg,#A7CECB 0%,#FFD6E0 100%);
  background-color: #719D60;
  border: none;
  border-radius: 999px;
  padding: 11px 32px;
  margin-left: 10px;
  box-shadow: 0 1.5px 15px 0 rgba(80,125,109,.12);
  cursor: pointer;
  outline: none;
  letter-spacing: 1px;
  transition: background 0.22s, color 0.20s, transform 0.16s;
  text-shadow: 0 2px 8px rgba(113,157,96,0.03);
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg,#E6EAFE 0%,#B2DBCB 100%);
  background-color: #557543;
  color: #19324C;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 22px 0 rgba(87, 117, 67, 0.17);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  z-index: 1101;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #719D60;
  cursor: pointer;
  position: fixed;
  top: 26px;
  right: 32px;
  padding: 8px 16px 8px 12px;
  border-radius: 40px;
  box-shadow: 0 2px 12px rgba(113,157,96,0.10);
}
@media (max-width: 940px) {
  .main-nav, header .cta-button { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  z-index: 2050;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg,#FCF6FF 0%,#E3F3FC 100%);
  box-shadow: 0 4px 28px 0 rgba(36,60,69,.18);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.57,.24,.42,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 30px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #19324C;
  cursor: pointer;
  z-index: 2051;
  border-radius: 40px;
  padding: 8px 18px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFF2F4;
}
.mobile-nav {
  margin-top: 72px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 0 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  color: #19324C;
  background: none;
  border-radius: 9px;
  padding: 15px 9px;
  margin: 0 0 5px 0;
  transition: background 0.18s, color 0.18s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E4EAF0;
  color: #719D60;
}
@media (max-width: 580px) {
  .mobile-nav { padding: 0 16px; }
}

/* GENERAL LAYOUT / CARDS / FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(61,90,128,0.08);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
  min-width: 250px;
  flex: 1 1 320px;
  max-width: 500px;
  z-index: 1;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(113,157,96,0.14);
  transform: translateY(-4px) scale(1.02);
}
.district-grid, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.district-card, .team-member {
  display: flex;
  flex-direction: column;
  background: #F7FDF7;
  border-radius: 20px;
  padding: 28px 20px;
  box-shadow: 0 2px 12px 0 rgba(133,184,154,0.08);
  min-width: 220px;
  flex: 1 1 280px;
  max-width: 330px;
  gap: 10px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.team-member img {
  border-radius: 50%;
  background: #E0F9EF;
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  box-shadow: 0 2px 18px 0 rgba(169,220,187,0.06);
}
.feature-comparison {
  width: 100%;
  overflow-x: auto;
  margin-top: 25px;
  margin-bottom: 18px;
}
.feature-comparison table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: #FFF;
  box-shadow: 0 2px 14px rgba(137,176,136,.09);
  border-radius: 13px;
  overflow: hidden;
  font-size: 0.98rem;
}
.feature-comparison th, .feature-comparison td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid #F0F2F9;
}
.feature-comparison th {
  background: #F8FAFF;
  color: #719D60;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-comparison tr:last-child td {
  border-bottom: none;
}
.map-snippet {
  margin-top: 30px; 
  text-align: center;
}

.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) {
  .card-container, .district-grid, .team-grid, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .district-card, .team-member, .card {
    min-width: 0;
    max-width: 100%;
  }
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FAFFF9;
  border-radius: 18px;
  box-shadow: 0 1.5px 13px 0 rgba(113,157,96,0.11);
  padding: 20px 28px;
  margin-bottom: 20px;
  flex: 1 1 275px;
  max-width: 650px;
  color: #263444;
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  margin-bottom: 0;
  font-family: inherit;
  color: #234451;
  font-size: 1.05rem;
}
.testimonial-card span {
  color: #719D60;
  font-size: 0.98rem;
  font-style: italic;
  margin-left: 12px;
}
.testimonial-card:hover {
  box-shadow: 0 5px 26px 0 rgba(113,157,96,0.21);
}

/* FEATURES / SERVICES / FAQLIST */
.features-list, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 24px;
}
.features-list li, .services-list li {
  background: #F5F8FA;
  border-radius: 18px;
  padding: 24px 18px 16px 18px;
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
  box-shadow: 0 2px 16px 0 rgba(120, 180,170,.06);
  font-size: 1.02rem;
}
.features-list li img {
  width: 40px;
  height: 40px;
  margin-bottom: 7px;
}
ol.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 26px;
  padding-left: 24px;
}
@media (max-width: 768px) {
  .features-list, .services-list {
    flex-direction: column;
    gap: 14px;
  }
  .features-list li, .services-list li {
    min-width: 0; max-width: 100%;
  }
}

/* Layout helpers */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FAQ BOX & TIP BOX */
.faq-item {
  background: #F4F7FB;
  border-radius: 14px;
  box-shadow: 0 1px 7px 0 rgba(151,196,194,.10);
  padding: 17px 19px 13px 20px;
  margin-bottom: 20px;
}
.faq-item h3 {
  color: #319C82;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
  font-weight: 600;
}
.tip-box {
  background: #FFFAED;
  border-left: 6px solid #FFC7D8;
  border-radius: 10px;
  color: #746146;
  padding: 13px 18px;
  margin-bottom: 22px;
  box-shadow: 0 1px 9px 0 rgba(255,215,234,0.07);
  font-family: 'Montserrat', Arial, sans-serif;
}

/* CONTACT DETAILS */
.contact-details {
  background: #F2FCF6;
  border-radius: 16px;
  box-shadow: 0 1px 6px 0 rgba(137,190,176,0.06);
  padding: 18px 22px;
  margin-bottom: 18px;
}
.contact-details p { margin-bottom: 10px; }

/* FOOTER */
footer {
  background: linear-gradient(90deg,#e5f6fd 0%,#f0f3fc 100%);
  border-top: 1.5px solid #E4EAF0;
  padding: 40px 0 0 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 20px;
}
.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 18px;
}
.footer-contacts {
  font-size: 0.99rem;
  color: #2A3542;
  min-width: 200px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.footer-nav a {
  color: #719D60;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 5px 7px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover {
  background: #E4EAF0;
  color: #19324C;
}
@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-nav {
    align-items: flex-start;
    gap: 7px;
  }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  z-index: 3000;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg,#F5F8FA 0%,#FDF7FA 100%);
  box-shadow: 0 -2px 22px 0 rgba(85,117,67,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 26px 14px 20px 14px;
  width: 100vw;
  min-height: 90px;
  opacity: 1;
  transition: bottom 0.4s cubic-bezier(.23,.93,.83,.62), opacity 0.18s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  bottom: -140px;
}
.cookie-banner p {
  color: #393957;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 0;
}
.cookie-btns {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.11s, transform 0.17s;
  outline: none;
  box-shadow: 0 1px 8px 0 rgba(113,157,96,0.05);
}
.accept-cookie {
  background: #719D60;
  color: #fff;
}
.accept-cookie:hover,.accept-cookie:focus {
  background: #557543;
  color: #fff;
  transform: translateY(-2px) scale(1.05);
}
.reject-cookie {
  background: #FFD6E0;
  color: #8C3D54;
}
.reject-cookie:hover,.reject-cookie:focus {
  background: #FF8EB5;
  color: #FFFFFF;
}
.settings-cookie {
  background: #E4EAF0;
  color: #4169A2;
}
.settings-cookie:hover,.settings-cookie:focus {
  background: #A7CECB;
  color: #19324C;
}

.cookie-modal-bg {
  position: fixed;
  z-index: 3050;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(201, 224, 232, 0.23);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}
.cookie-modal-bg.active {
  display: flex;
}
.cookie-modal {
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 12px 36px 0 rgba(119,180,174,0.28);
  width: 98vw;
  max-width: 420px;
  padding: 40px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: stretch;
  position: relative;
  animation: modalSlideIn 0.36s cubic-bezier(.35,.89,.62,1);
}
@keyframes modalSlideIn {
  from { transform: translateY(40px); opacity: 0; } to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #19324C;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
  background: #F5F8FA;
  border-radius: 9px;
  padding: 10px 13px;
}
.cookie-category label {
  font-size: 1rem;
  color: #3C5348;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.cookie-switch {
  width: 36px;
  height: 22px;
  background: #E4EAF0;
  border-radius: 18px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-switch input {
  display: none;
}
.cookie-switch-slider {
  position: absolute;
  height: 18px;
  width: 18px;
  left: 2px;
  top: 2px;
  background: #FFF;
  border-radius: 50%;
  transition: left 0.20s, background 0.19s;
  box-shadow: 0 1px 4px rgba(143,157,156,0.08);
}
.cookie-switch input:checked + .cookie-switch-slider {
  left: 16px;
  background: #719D60;
}
.cookie-switch[aria-disabled="true"] {
  opacity: 0.52;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: none;
  background: none;
  font-size: 1.7rem;
  color: #719D60;
  cursor: pointer;
  border-radius: 29px;
  padding: 5px 12px;
  transition: background 0.16s;
}
.cookie-modal-close:hover { background: #E4EAF0; }

@media (max-width: 540px) {
  .cookie-modal { padding: 16px 4px; }
}

/* MICRO-INTERACTION & TRANSITIONS */
button:focus, a:focus {
  outline: 2px dotted #A7CECB;
  outline-offset: 2px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
::-webkit-input-placeholder { color: #A1A9B5; }
::-moz-placeholder { color: #A1A9B5; }
:-ms-input-placeholder { color: #A1A9B5; }
::placeholder { color: #A1A9B5; }

/* DREAMY ATMOSPHERE / SOFT PASTEL BACKDROPS */
body {
  background: linear-gradient(120deg,#f9fadf 0%,#eaf5fb 40%,#fff0f6 100%);
}

/* RESPONSIVE DESIGN */
@media (max-width: 660px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.3rem; }
  .section { padding: 18px 5px; }
  .content-wrapper { padding: 12px 2px; }
  .district-card, .team-member, .card { padding: 18px 7px; }
}

/* Z-INDEX & OVERLAP PROTECTION */
header, .mobile-menu, .cookie-banner, .cookie-modal-bg { z-index: 2000; }
main, section, .container, .content-wrapper, footer, .card, .district-card, .testimonial-card, .tip-box, .faq-item {
  position: relative;
  z-index: 1;
}
/* NO absolute used for content blocks */

/* END OF CSS */
