/* RESET & BASE ---------------------------------------------------- */
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, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.55;
  background: #F7FBEA;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #374550;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
ul, ol {
  list-style: none;
}
a {
  color: #20603D;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #4EB487;
}
img {
  max-width: 100%;
  display: block;
}
button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}
input, textarea, select {
  font-family: inherit;
}

/* FONTS ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1A2327;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
p, li, address {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #374550;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
}
small {
  font-size: 0.91rem;
}

/* PASTEL PALETTE --------------------------------------------------- */
:root {
  --primary: #20603D;
  --secondary: #1A2327;
  --accent: #F7FBEA;
  --pastel-green: #D1F9DC;
  --pastel-blue: #BADCF7;
  --pastel-pink: #FEB4DC;
  --pastel-yellow: #FFF4B8;
  --pastel-lilac: #E4DBFF;
  --pastel-orange: #FFEBDA;
  --soft-shadow: 0 2px 16px 0 rgba(59,76,88,0.08);
}

/* GENERIC STRUCTURE ----------------------------------------------- */
.container {
  width: 100%;
  max-width: 1052px;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  padding-top: 100px;
  padding-bottom: 30px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px;
  background: var(--accent);
  box-shadow: var(--soft-shadow);
  transition: box-shadow 0.25s;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  padding: 28px 20px;
  min-width: 240px;
  flex: 1 1 270px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(59,76,88,0.18);
  transform: translateY(-3px) scale(1.02);
}

.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;
  background: #FFF;
  padding: 24px 28px;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: var(--soft-shadow);
  border-left: 6px solid var(--pastel-pink);
  font-size: 1.07rem;
  color: #345566;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.21s, border-color 0.23s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(59,76,88,0.22);
  border-left: 6px solid var(--primary);
}
.testimonial-card strong {
  color: var(--primary);
  padding-top: 4px;
  font-size: 1rem;
  font-weight: 600;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--pastel-green);
  padding: 18px 20px;
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  margin-bottom: 20px;
}

/* HEADER/NAV ------------------------------------------------------ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1002;
  background: rgba(255,255,255,0.98);
  box-shadow: var(--soft-shadow);
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 68px;
}
header img {
  height: 44px;
}
nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1rem;
  color: var(--secondary);
  background: transparent;
  padding: 7px 14px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a:focus {
  background: var(--pastel-green);
  color: var(--primary);
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--primary);
  color: #FFF;
  padding: 12px 26px;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 2px 8px 0 rgba(32,96,61,0.09);
  transition: background 0.22s, box-shadow 0.18s, color 0.2s, transform 0.18s;
  border: none;
  margin-left: 10px;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #37B67A;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 16px 0 rgba(32,96,61,0.13);
}
header .mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--primary);
  background: var(--pastel-green);
  border-radius: 11px;
  padding: 5px 10px 2px 10px;
  border: 2px solid var(--pastel-green);
  margin-left: 10px;
  transition: background 0.17s, border-color 0.18s;
  z-index: 1102;
}
header .mobile-menu-toggle:focus, header .mobile-menu-toggle:hover {
  background: #D1F9DC;
  border-color: var(--primary);
}

/* MOBILE MENU ---------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250,250,252,0.98);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.5,.02,0,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: var(--pastel-pink);
  color: var(--primary);
  border-radius: 11px;
  padding: 5px 14px 2px 14px;
  border: 2px solid #FFF;
  margin-left: 22px;
  margin-bottom: 18px;
  align-self: flex-end;
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFF;
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 40px;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 10px 14px 0;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-green);
  color: var(--primary);
}

@media (max-width: 1022px) {
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  header .container {
    gap: 12px;
    padding: 0 4px !important;
  }
  nav {
    gap: 7px;
  }
  .cta-btn {
    padding: 9px 18px;
    font-size: 0.98rem;
    border-radius: 11px;
  }
}

@media (max-width: 820px) {
  header nav {
    display: none;
  }
  header .cta-btn {
    display: none;
  }
  header .mobile-menu-toggle {
    display: inline-block;
  }
}

/* MAIN SECTIONS --------------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: none;
}
section .container {
  padding-top: 0;
  padding-bottom: 0;
}
section:last-of-type {
  margin-bottom: 0;
}

/* Home HERO (/) ---------------------- */
main > section:first-child {
  background: linear-gradient(95deg, #D1F9DC 30%, #FFE0F5 100%);
  border-radius: 32px;
  box-shadow: var(--soft-shadow);
  padding-top: 44px;
  padding-bottom: 44px;
  margin-bottom: 52px;
}
main > section:first-child h1 {
  color: var(--primary);
  font-size: 2.7rem;
  margin-bottom: 26px;
}
main > section:first-child p {
  font-size: 1.13rem;
  margin-bottom: 28px;
}
main > section:first-child .cta-btn {
  font-size: 1.15rem;
  padding: 14px 34px;
  border-radius: 18px;
}

/* Features as cards or ul/li ------------------ */
.content-wrapper > ul,
.content-wrapper > div {
  flex: 1 1 220px;
}
.content-wrapper ul {
  margin-left: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--pastel-lilac);
  border-radius: 16px;
  padding: 14px 20px;
  font-size: 1.02rem;
  box-shadow: 0 0.5px 1px 0 rgba(32,96,61,0.05);
  transition: background 0.18s;
}
.content-wrapper ul li img {
  width: 31px;
  height: 31px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: var(--soft-shadow);
  margin-right: 12px;
  flex-shrink: 0;
}
.content-wrapper ul li:hover {
  background: var(--pastel-blue);
}

/* About intro & team ------------------------------------------- */
.content-wrapper > p {
  flex: 1 1 320px;
  margin-right: 24px;
  min-width: 240px;
}

/* Services / Offer Cards ------------------------------------ */
.content-wrapper > div {
  background: var(--pastel-yellow);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
  padding: 20px 18px;
  margin-bottom: 20px;
  flex: 1 1 300px;
  min-width: 220px;
  transition: box-shadow 0.23s, background 0.23s;
}
.content-wrapper > div:hover {
  background: #FFF5CD;
  box-shadow: 0 4px 16px 0 rgba(59,76,88,0.14);
}
.content-wrapper > div > h3 {
  color: var(--primary);
  font-size: 1.18rem;
  margin-bottom: 7px;
}
.content-wrapper > div > p {
  font-size: 1.01rem;
}

/* Map or special info blocks ------------------------------- */
.map {
  background: var(--pastel-blue);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 10px;
  font-size: 1rem;
  color: var(--secondary);
}

/* FINAL CTA section -------------------------------------- */
main > section:last-child .content-wrapper {
  align-items: center;
  justify-content: center;
}
main > section:last-child h2 {
  margin-bottom: 21px;
}
main > section:last-child .cta-btn {
  font-size: 1.18rem;
  padding: 16px 36px;
  border-radius: 22px;
}


/* FOOTER ----------------------------------------------------------- */
footer {
  background: #fff;
  box-shadow: 0 -1px 20px 1px rgba(106,132,109,0.06);
  border-top: 1.5px solid #ddefe2;
  font-size: 1rem;
  padding: 38px 0 18px 0;
  margin-top: 54px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: underline;
  letter-spacing: 0.01em;
  background: var(--pastel-green);
  padding: 4px 13px 4px 11px;
  border-radius: 7px;
  transition: background 0.18s, color 0.16s;
}
.footer-nav a:hover {
  background: var(--pastel-pink);
  color: var(--primary);
}
footer address {
  font-style: normal;
  color: #3e5852;
  font-size: 0.98rem;
}

footer small {
  color: #a8b4ac;
  margin-top: 5px;
}

/* ==== RESPONSIVE FLEX & LAYOUT ================================== */
@media (max-width: 768px) {
  main {
    padding-top: 80px;
    padding-bottom: 12px;
  }
  .section {
    margin-bottom: 40px;
    padding: 24px 8px;
  }
  .content-wrapper, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .card {
    min-width: 0;
    width: 100%;
    padding: 20px 10px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
    padding: 18px 10px;
    font-size: 0.98rem;
  }
  footer .container {
    gap: 14px;
    padding-bottom: 15px;
  }
  .footer-nav {
    gap: 9px;
  }
  header .container {
    gap: 7px;
    min-height: 52px;
    padding: 0 2px !important;
  }
  header img {
    height: 35px;
  }
}

/* ==== ELEMENTS, HOVER AND MICRO-ANIMATIONS =================== */
.cta-btn, .mobile-menu-toggle, .mobile-menu-close, .footer-nav a {
  transition: background 0.19s, color 0.19s, box-shadow 0.16s, border 0.17s, transform 0.17s;
}
.cta-btn:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(0.98);
}

/* Utility: Visually hidden for accessibility --------------- */
.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

/* ==== FORMS (if any appear in future) ======================= */
input, textarea, select {
  border: 1.5px solid #dbeada;
  background: #FFF;
  color: #1A2327;
  border-radius: 8px;
  padding: 9px 14px;
  margin-bottom: 16px;
  font-size: 1rem;
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  outline: none;
}

/* SCROLLBAR ----------------------------------------------- */
body {
  scrollbar-width: thin;
  scrollbar-color: var(--pastel-green) #fff;
}
::-webkit-scrollbar {
  width: 8px;
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: var(--pastel-green);
  border-radius: 7px;
}

/* ==== COOKIE BANNER ============================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg,#FFF4B8 80%,#E4DBFF 100%);
  color: #2d3a32;
  font-size: 1.03rem;
  z-index: 2000;
  box-shadow: 0 -2px 24px 2px rgba(0,0,0,0.09);
  padding: 20px 18px 17px 18px;
  border-radius: 28px 28px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  flex: 1 1 240px;
  color: #2d3a32;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 13px;
  font-size: 1.04rem;
  border: none;
  margin-right: 4px;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn.accept {
  background: var(--primary);
  color: #FFF;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #4EB487;
}
.cookie-btn.reject {
  background: var(--pastel-pink);
  color: var(--primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFF;
  color: var(--secondary);
}
.cookie-btn.settings {
  background: var(--pastel-blue);
  color: var(--secondary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--pastel-green);
  color: var(--primary);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 16px 7px 13px 7px;
    font-size: 0.97rem;
  }
  .cookie-banner-buttons {
    width: 100%;
    justify-content: flex-start;
  }
}

/* COOKIE MODAL -------------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2010;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(70, 85, 82, 0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s;
  opacity: 1;
}
.cookie-modal {
  background: #FFF;
  border-radius: 19px;
  box-shadow: 0 8px 32px rgba(59,76,88,0.22);
  padding: 28px 28px 20px 28px;
  width: 90vw;
  max-width: 410px;
  animation: pop-in 0.34s cubic-bezier(.49,1.53,.52,1);
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.31rem;
  color: var(--primary);
  margin-bottom: 11px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 13px;
  right: 16px;
  font-size: 1.5rem;
  background: var(--pastel-pink);
  border-radius: 8px;
  border: none;
  color: var(--primary);
  padding: 3px 9px;
  transition: background 0.13s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--pastel-green);
  color: var(--secondary);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--pastel-blue);
  padding: 12px 10px;
  border-radius: 7px;
  margin-bottom: 10px;
  font-size: 1.03rem;
}
.cookie-modal .cookie-category.essential {
  background: var(--pastel-green);
  font-weight: 600;
  color: var(--primary);
}
.toggle-switch {
  margin-left: auto;
  display: inline-block;
}
.toggle-switch input {
  display: none;
}
.toggle-slider {
  display: inline-block;
  width: 39px;
  height: 21px;
  background: #dbeada;
  border-radius: 12px;
  position: relative;
  transition: background 0.17s;
}
.toggle-slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 15px;
  height: 15px;
  background: var(--pastel-pink);
  border-radius: 50%;
  transition: transform 0.18s, background 0.15s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--pastel-green);
}
.toggle-switch input:checked + .toggle-slider:before {
  background: var(--primary);
  transform: translateX(16px);
}

@keyframes pop-in {
  0% { opacity: 0; transform: scale(0.95) translateY(18px); }
  95% { transform: scale(1.05) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ==== PASTEL DECORATION & MICRODETAILS ======================= */
.card, .testimonial-card, .feature-item, .map, section {
  box-shadow: var(--soft-shadow);
}
h2 span, h3 span {
  color: var(--pastel-pink);
}

/* ==== SPACING UTILITIES ===================================== */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-24 { margin-top: 24px !important; }

/* ==== ANIMATIONS ============================================ */
.card, .testimonial-card, .feature-item {
  transition: box-shadow 0.19s, transform 0.17s, background 0.14s;
}
.card:hover, .feature-item:hover {
  transform: translateY(-3px) scale(1.021);
  background: #FFF;
  box-shadow: 0 7px 24px 3px rgba(59,76,88,0.12);
}
