/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F4F8FB;
  color: #23466D;
  font-size: 1rem;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #23466D;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.45,1,.26,1);
  cursor: pointer;
}
a:hover,
a:focus {
  color: #7BAD36;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0.01em;
  color: #23466D;
  margin-bottom: 0.75em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 1.8rem;
  line-height: 1.22;
}
h3 {
  font-size: 1.2rem;
  line-height: 1.27;
}
p {
  margin-bottom: 1em;
  color: #23466D;
  font-size: 1rem;
}
strong {
  font-weight: bold;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* CONTAINER & CONTENT WRAPPERS */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}
.text-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 12px 0 rgba(35,70,109,0.08);
  padding: 32px 24px;
  margin-bottom: 20px;
  width: 100%;
}

/* FLEXBOX LAYOUTS (NO GRID) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 12px 0 rgba(35,70,109,0.08);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: calc(25% - 18px);
  /* playful colored shadow on hover */
  transition: box-shadow .25s, transform .22s;
}
.feature-grid > div:hover {
  box-shadow: 0 5px 24px 0 rgba(123,173,54,0.22), 0 2px 10px #fff;
  transform: translateY(-5px) scale(1.035) rotate(-1.5deg);
}

/* CARDS (Content, Testimonials, Features, etc.) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.card {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 32px 20px 28px 20px;
  box-shadow: 0 3px 12px 0 rgba(35,70,109,0.09);
  position: relative;
  transition: box-shadow .22s, transform .18s;
  min-width: 210px;
}
.card:hover {
  box-shadow: 0 6px 26px #7BAD36cc, 0 3px 16px #23466D15;
  transform: translateY(-7px) scale(1.045) rotate(1.5deg);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin: 20px 0 0 0;
  background: #fff;
  border-left: 5px solid #7BAD36;
  border-radius: 18px;
  box-shadow: 0 5px 20px 0 rgba(35,70,109,.08);
  position: relative;
  min-width: 230px;
  max-width: 500px;
  transition: box-shadow 0.21s;
}
.testimonial-card p {
  color: #222e43;
  font-size: 1.07rem;
  margin-bottom: 0.25em;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #23466D;
}
.testimonial-card span {
  font-size: 0.92rem;
  color: #505050;
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px #23466d22, 0 2px 14px #7BAD3615;
  background: #F4F8FB;
}

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

/* HERO SECTION */
.hero {
  width: 100%;
  padding: 60px 0 50px 0;
  background: linear-gradient(120deg, #F4F8FB 77%, #7BAD36 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 340px;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  color: #23466D;
  font-size: 2.65rem;
  line-height: 1.1;
  margin-bottom: 8px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -.02em;
  animation: bounceIn 0.8s;
}
.hero p {
  color: #23466D;
  font-size: 1.18rem;
  animation: fadeInUp 1.3s;
  margin-bottom: 13px;
}

@keyframes bounceIn {
  0%   { transform: scale(.98) translateY(16px); opacity: 0; }
  65%  { transform: scale(1.02) translateY(-14px); opacity: .89; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  padding: 12px 30px;
  margin: 6px 0 0 0;
  text-decoration: none;
  min-width: 180px;
  transition: background 0.18s, color 0.18s, box-shadow .17s, transform .18s;
  box-shadow: 0 2px 10px #7bad3633;
}
.btn-primary {
  background: #7BAD36;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #509218;
  color: #fff;
  transform: scale(1.05) translateY(-2px) rotate(-2deg);
  box-shadow: 0 6px 24px #23466D33;
}
.btn-secondary {
  background: #fff;
  color: #23466D;
  border: 2px solid #7BAD36;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F4F8FB;
  color: #7BAD36;
  transform: scale(1.045) translateY(-2px) rotate(2deg);
  box-shadow: 0 8px 20px #50921818, 0 1px 5px #fff;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #F4F8FB;
  border-bottom: 2px solid #7BAD36;
  box-shadow: 0 2px 12px #23466d08;
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 15px 20px;
}
header nav {
  display: flex;
  gap: 17px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1.01rem;
  color: #23466D;
  padding: 8px 14px;
  border-radius: 18px;
  transition: background .13s, color .16s, transform .14s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #7BAD36;
  color: #fff;
  transform: scale(1.07) rotate(-1.5deg);
}
header img {
  height: 42px;
  width: auto;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #fff;
  color: #7BAD36;
  border: 2px solid #7BAD36;
  border-radius: 8px;
  padding: 7px 14px;
  position: absolute;
  top: 13px;
  right: 18px;
  z-index: 1003;
  transition: background .14s, color .16s, box-shadow .12s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #7BAD36;
  color: #fff;
  box-shadow: 0 4px 18px #23466d22;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #23466D;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(-100vw);
  transition: transform .32s cubic-bezier(.66,.1,.32,1);
  padding-top: 35px;
  padding-right: 10px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  margin: 15px 20px 0 0;
  transition: color .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #7BAD36;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100vw;
  margin-top: 30px;
  padding-left: 30px;
}
.mobile-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 6px;
  padding: 11px 0 11px 0;
  width: 100%;
  border-radius: 8px;
  transition: background 0.13s, color 0.14s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #7BAD36;
  background: #fff1;
}

/* FOOTER */
footer {
  background: #7BAD36;
  color: #fff;
  padding: 40px 0 18px 0;
  margin-top: 80px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -4px 28px #23466d15;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  padding: 4px 0;
  border-radius: 6px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  transition: background .12s, color .13s;
}
footer nav a:hover, footer nav a:focus {
  color: #23466D;
  background: #fff8;
}
footer img {
  height: 32px;
  margin-bottom: 17px;
}
footer address {
  color: #fff;
  font-size: 0.97rem;
}
footer address a {
  color: #fff;
  text-decoration: underline;
  transition: color .15s;
}
footer address a:hover {
  color: #23466D;
}

/* LISTS, UL/OL/LIs */
ul, ol {
  padding-left: 0;
  margin-bottom: 1.2em;
}
li {
  padding-left: 0;
  margin-bottom: .65em;
  color: #23466D;
  font-size: 1.04rem;
  position: relative;
  line-height: 1.69;
}
.text-section ul li:before {
  content: '•';
  color: #7BAD36;
  font-size: 1.30em;
  font-weight: bold;
  margin-right: 0.7em;
}
.text-section ul li {
  margin-left: 0;
  padding-left: 0.2em;
}

/* MAP PLACEHOLDER */
.map-placeholder {
  background: #e0ffe4;
  border-radius: 14px;
  padding: 24px 18px;
  margin: 18px 0 8px 0;
  border: 2px dashed #7BAD36;
  color: #23466D;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ANIMATIONS & MICROINTERACTIONS */
.card, .feature-grid > div, .testimonial-card, .btn-primary, .btn-secondary {
  will-change: transform, box-shadow;
}
.card, .feature-grid > div, .testimonial-card {
  animation: fadeInUp 0.85s;
}

/* PLAYFUL DYNAMIC VISUALS */
h1, h2 {
  text-shadow: 1px 2px 0 #7BAD3633, 2px 4px 0 #fff3;
  letter-spacing: 0.01em;
}
.hero h1 {
  text-shadow: 2px 6px 12px #7BAD3633, 4px 8px 0 #fff6;
  color: #23466D;
}

/* Colorful floating dots */
.section:before {
  content: '';
  display: block;
  width: 38px; height: 38px;
  background: #7BAD36;
  position: absolute;
  top: -18px; left: -36px;
  border-radius: 50%;
  opacity: .14;
  z-index: 0;
  animation: floatDots 5.6s infinite alternate ease-in-out;
}
@keyframes floatDots {
  0% { transform: translateY(0) scale(1.05); }
  100% { transform: translateY(31px) scale(0.98); }
}
.section {
  position: relative;
  z-index: 1;
}

/* Responsive Typography & Section Sizing */
@media (max-width: 900px) {
  h1 { font-size: 2.0rem; }
  .hero .content-wrapper { gap: 12px; }
  .feature-grid > div, .card { min-width: 180px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.14rem; }
  .container, .content-wrapper, .content-grid { padding: 0 2vw; }
  .section {
    margin-bottom: 36px;
    padding: 22px 8px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .card {
    max-width: 100%;
    min-width: 100%;
    padding: 18px 12px;
  }
  .footer .container {
    flex-direction: column;
    gap: 28px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    font-size: 0.99rem;
    padding: 13px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  header .container {
    flex-direction: row;
    padding: 8px 7px;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    padding: 0 5px;
  }
  .feature-grid {
    gap: 10px;
  }
}

/* Responsive NAV */
@media (max-width: 1100px) {
  header .container {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  header nav { display: none; }
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    right: 22px;
    top: 17px;
    z-index: 1003;
  }
  .btn-primary {
    display: none;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #23466D;
  color: #fff;
  width: 100vw;
  z-index: 1099;
  padding: 20px 28px 22px 28px;
  box-shadow: 0 -2px 30px #7bad3633;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
  flex-wrap: wrap;
  animation: fadeInUp 0.76s;
}
.cookie-banner-text {
  max-width: 560px;
  font-size: 1.03rem;
}
.cookie-btn-row {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-btn-row .btn-primary {
  background: #7BAD36;
  color: #fff;
  box-shadow: 0 1px 10px #7BAD3633;
}
.cookie-btn-row .btn-secondary {
  background: #fff;
  color: #23466D;
  border: 2px solid #7BAD36;
}
.cookie-btn-row .btn-primary:focus, .cookie-btn-row .btn-primary:hover {
  background: #509218;
  color: #fff;
}
.cookie-btn-row .btn-secondary:focus, .cookie-btn-row .btn-secondary:hover {
  background: #fafff5;
  color: #7BAD36;
}

/* Cookie Modal */
.cookie-modal-overlay {
  background: rgba(35,70,109,0.82);
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1202;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.39s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #23466D;
  border-radius: 18px;
  box-shadow: 0 8px 40px #23466d44, 0 2px 10px #7BAD3610;
  padding: 37px 26px 24px 26px;
  min-width: 290px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: bounceIn 0.5s;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 4px;
  color: #23466D;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  accent-color: #7BAD36;
  border: 2px solid #7BAD36;
}
.cookie-category input[disabled] {
  opacity: .38;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 7px;
}
@media (max-width: 600px) {
  .cookie-modal {
    min-width: 95vw;
    padding: 18px 7vw;
  }
}

/* ACCESSIBILITY/HOVER STATES */
*:focus-visible {
  outline: 2px dotted #469718;
  outline-offset: 2px;
}
::-webkit-scrollbar {
  width: 13px;
  background: #F4F8FB;
}
::-webkit-scrollbar-thumb {
  background: #7BAD36;
  border-radius: 20px;
}

/* UTILITY: Hide visually but not for screenreaders */
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden;clip:rect(1px,1px,1px,1px); white-space:nowrap; }

/* Extra Visual Flair: Fun fonts/Colors for Playful Dynamic */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,500,700&display=swap');

body, .btn-primary, .btn-secondary, .mobile-nav a, header nav a, h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
}

/* Distinct Colorful Accents for Dynamic Look */
.feature-grid > div:nth-child(1) { border-left: 6px solid #7BAD36; }
.feature-grid > div:nth-child(2) { border-left: 6px solid #23466D; }
.feature-grid > div:nth-child(3) { border-left: 6px solid #FFD351; }
.feature-grid > div:nth-child(4) { border-left: 6px solid #E55473; }

.card, .feature-grid > div, .testimonial-card {
  border-top: 4px solid #F4F8FB;
}

/* Decorative dots & curves (playful energy, optional SVG bg decorations) */

/* ...end styles */
