/* ========== CSS 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, 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 {
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}
body {
  min-height: 100vh;
  background: #F3F8F1;
  color: #235D3A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  background-color: transparent;
  color: #235D3A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #A9C45B;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}
/* ========== BRAND FONTS ========== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,800&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;
  color: #235D3A;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  line-height: 1.18;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  font-weight: 600;
}
p, li, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #235D3A;
}
p {
  margin-bottom: 20px;
  font-size: 1.08rem;
}
strong {
  font-weight: 700;
}

/* ========== CONTAINER & LAYOUT ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(35,93,58,0.06);
  position: relative;
}
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .content-wrapper {
    max-width: 100%;
  }
}

/* ========== HEADER & NAV ========== */
header {
  background: #235D3A;
  color: #fff;
  box-shadow: 0 6px 16px rgba(35,93,58,0.09);
  padding: 0;
  border-bottom-left-radius: 44px 32px;
  border-bottom-right-radius: 44px 32px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 18px;
  gap: 14px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: #F3F8F1;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #A9C45B;
  color: #235D3A;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  background: #A9C45B;
  color: #235D3A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  border-radius: 14px;
  padding: 13px 28px;
  box-shadow: 0 2px 12px 0 rgba(169,196,91,0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  cursor: pointer;
  margin-left: 18px;
}
.cta-button:hover, .cta-button:focus {
  background: #235D3A;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(35,93,58,0.13);
  transform: translateY(-3px) scale(1.03) rotate(-2deg);
}
.header .cta-button:active {
  transform: scale(0.97);
}
button.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: #A9C45B;
  color: #235D3A;
  border-radius: 100px;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 12px 0 rgba(169,196,91,0.17);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
button.mobile-menu-toggle:hover {
  background: #235D3A;
  color: #F3F8F1;
}
@media (max-width: 1024px) {
  .main-nav, .cta-button {
    display: none;
  }
  button.mobile-menu-toggle {
    display: flex;
  }
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #235D3A;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.86,0,.07,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 22px;
  margin-left: 22px;
  background: #A9C45B;
  color: #235D3A;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 9px 0 rgba(169,196,91,0.21);
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  z-index: 1202;
}
.mobile-menu-close:hover {
  background: #235D3A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 60px;
  margin-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.19s, border-color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A9C45B;
  border-bottom: 2.5px solid #A9C45B;
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(98deg, #A9C45B 0%, #F3F8F1 90%);
  padding-top: 70px;
  padding-bottom: 70px;
  border-bottom-left-radius: 70px 34px;
  border-bottom-right-radius: 70px 34px;
  min-height: 320px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  max-width: 670px;
}
.hero h1 {
  color: #235D3A;
  font-size: 2.5rem;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #2c633a;
}
@media (max-width: 700px) {
  .hero {
    padding-top: 38px;
    padding-bottom: 38px;
    border-bottom-left-radius: 30px 16px;
    border-bottom-right-radius: 30px 16px;
  }
  .hero h1 {
    font-size: 1.55rem;
  }
  .hero .content-wrapper {
    gap: 16px;
  }
}

/* ========== FEATURE GRID & CARDS ========== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
  margin-bottom: 16px;
  justify-content: space-between;
}
.feature-grid li {
  background: #F3F8F1;
  border-radius: 22px;
  box-shadow: 0 4px 16px rgba(35,93,58,0.09);
  padding: 26px 22px;
  min-width: 260px;
  flex: 1 1 250px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid li:hover {
  box-shadow: 0 8px 24px rgba(35,93,58,0.16);
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
}
.feature-grid img {
  width: 44px;
  height: 44px;
}
.feature-grid h3 {
  font-size: 1.19rem;
  color: #235D3A;
  margin-bottom: 6px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
    flex-wrap: wrap;
  }
  .feature-grid li {
    max-width: 100%;
    min-width: 200px;
  }
}
@media (max-width: 700px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* ========== CARD CONTAINERS ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(35,93,58,0.09);
  padding: 28px 22px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 10px 28px rgba(169,196,91,0.19);
  transform: translateY(-3px) scale(1.015) rotate(-1deg);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
@media (max-width: 700px) {
  .text-image-section {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fffde8;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(35,93,58,0.10);
  max-width: 670px;
  transition: box-shadow 0.18s, background 0.18s;
  border-left: 6px solid #A9C45B;
}
.testimonial-card:hover {
  background: #A9C45B;
  color: #235D3A;
  box-shadow: 0 6px 28px rgba(35,93,58,0.14);
}
.testimonial-content p {
  font-size: 1.08rem;
  color: #235D3A;
  margin-bottom: 10px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-content strong {
  font-size: 1rem;
  color: #235D3A;
  font-weight: 700;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 16px 10px;
  }
}

/* ========== LISTS, STEPS, SERVICES ========== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 24px;
}
.service-list li {
  background: #F3F8F1;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(35,93,58,0.06);
  padding: 28px 20px;
  margin-bottom: 18px;
}
.service-list h2 {
  font-size: 1.29rem;
  margin-bottom: 8px;
}

ul li, ol li {
  margin-bottom: 8px;
  padding-left: 0;
  font-size: 1.09rem;
}
ul li:before, ol li:before {
  content: '';
  margin-right: 0;
}

/* ========== CONTACT & MAP ========== */
.contact-details {
  background: #F3F8F1;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 2px 9px rgba(35,93,58,0.07);
  margin-bottom: 18px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details li img {
  height: 22px;
  margin-right: 12px;
  vertical-align: middle;
}
.embedded-map img {
  width: 100%;
  max-width: 420px;
  height: auto;
  box-shadow: 0 1px 6px rgba(35,93,58,0.08);
  border-radius: 14px;
}
@media (max-width: 600px) {
  .embedded-map img {
    max-width: 100%;
  }
}

/* ========== FOOTER ========== */
footer {
  padding: 38px 0 18px 0;
  background: #235D3A;
  color: #F3F8F1;
  border-top-left-radius: 44px 28px;
  border-top-right-radius: 44px 28px;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #A9C45B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  margin-bottom: 4px;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F3F8F1;
}
.footer-contact {
  font-size: 0.97rem;
  color: #F3F8F1;
  line-height: 1.5;
  margin-top: 8px;
}
.footer-contact img {
  height: 17px;
  margin-right: 7px;
  vertical-align: middle;
}
footer img {
  height: 46px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  footer .container {
    gap: 6px;
  }
  footer {
    padding: 18px 0 8px 0;
    border-top-left-radius: 20px 12px;
    border-top-right-radius: 20px 12px;
  }
}

/* ========== TYPOGRAPHY: CREATIVE ARTISTIC ========== */
@media (max-width: 900px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.32rem;
    margin-bottom: 14px;
  }
  .section {
    padding: 18px 8px;
  }
}

/* ========== BUTTONS & LINKS ========== */
button, .cta-button {
  cursor: pointer;
  border: none;
  outline: none;
}
.cta-button:focus {
  box-shadow: 0 0 0 3px #A9C45B88;
}
/* Links in body text */
p a, .text-section a {
  color: #235D3A;
  border-bottom: 2px solid #A9C45B;
  transition: border-color 0.16s, color 0.16s;
  padding-bottom: 1.5px;
}
p a:hover, .text-section a:hover {
  color: #A9C45B;
  border-color: #235D3A;
}

/* ========== FORMS ========== */
input, textarea, select {
  padding: 10px 12px;
  border-radius: 7px;
  border: 1.5px solid #A9C45B;
  margin-bottom: 16px;
  font-size: 1rem;
  background: #fff;
  color: #235D3A;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #235D3A;
  box-shadow: 0 0 0 2px #A9C45B66;
}
label {
  font-size: 0.97rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #235D3A;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #235D3A;
  border-top: 3px solid #A9C45B;
  box-shadow: 0 -6px 18px rgba(35,93,58,0.13);
  z-index: 1500;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  animation: bannerIn 0.6s cubic-bezier(.96,.01,.44,1.07);
}
@keyframes bannerIn {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1rem;
  margin-bottom: 7px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  border-radius: 9px;
  padding: 8px 18px;
  color: #235D3A;
  background: #A9C45B;
  margin-right: 6px;
  transition: background 0.13s, color 0.13s;
  box-shadow: 0 4px 13px rgba(169,196,91,0.13);
}
.cookie-banner button:hover {
  background: #235D3A;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: #F3F8F1;
  color: #235D3A;
  border: 1.5px solid #A9C45B;
  transition: background 0.15s, border-color 0.15s;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #A9C45B;
  color: #235D3A;
  border-color: #235D3A;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1600;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,93,58,0.47);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.3s;
}
@keyframes fadein {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #235D3A;
  border-radius: 16px;
  max-width: 410px;
  width: 95vw;
  padding: 34px 26px 26px 26px;
  box-shadow: 0 6px 32px rgba(35,93,58,0.14);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: popupIn 0.4s cubic-bezier(.71,0,.26,1.14);
}
@keyframes popupIn {
  from { transform: scale(.84) translateY(50px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 7px;
  font-size: 1.12rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #235D3A;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}
.cookie-modal .cookie-switch {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #A9C45B;
  border-radius: 16px;
  position: relative;
  outline: none;
  transition: background 0.2s;
  cursor: pointer;
}
.cookie-modal .cookie-switch:checked {
  background: #235D3A;
}
.cookie-modal .cookie-switch:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s, background 0.15s;
}
.cookie-modal .cookie-switch:checked:before {
  left: 19px;
  background: #A9C45B;
}
.cookie-modal .cookie-btn-row {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 8px;
  right: 13px;
  font-size: 1.4rem;
  color: #235D3A;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.12s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #F3F8F1;
}
.cookie-modal .always-on {
  color: #999;
  font-size: 0.97rem;
}

@media (max-width: 700px) {
  .cookie-banner {
    padding: 15px 8px 10px 8px;
    font-size: 0.98rem;
  }
  .cookie-modal {
    padding: 15px 8px 13px 8px;
    max-width: 99vw;
  }
}

/* ========== CREATIVE & ARTISTIC UNIQUE ELEMENTS ========== */
.section {
  border-radius: 30px 40px 30px 40px/40px 30px 40px 30px;
  box-shadow: 0 8px 32px 0 rgba(35,93,58,0.06), 0 1.5px 3.5px rgba(169,196,91,0.10);
  position: relative;
  overflow: visible;
}
.section:before {
  content: '';
  position: absolute;
  left: -25px;
  top: -22px;
  width: 65px;
  height: 65px;
  background: #A9C45B;
  border-radius: 50% 55% 46% 62%/62% 46% 55% 50%;
  opacity: 0.16;
  z-index: 1;
  pointer-events: none;
  filter: blur(1px);
  transform: rotate(-13deg);
}
.section:after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -25px;
  width: 38px;
  height: 38px;
  background: #235D3A;
  border-radius: 54% 55% 80% 44%/44% 64% 55% 90%;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
  filter: blur(1px);
  transform: rotate(19deg);
}

.card {
  background: #FFFAF2; /* makes cards warm, inviting, artistic */
  border-left: 5px solid #A9C45B;
  border-radius: 20px 33px 20px 33px/33px 20px 33px 20px;
  position: relative;
  box-shadow: 0 7px 24px 0 rgba(169,196,91,0.10);
  margin-bottom: 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* ========== ANIMATIONS & MICRO-INTERACTIONS ========== */
.cta-button,
button,
a {
  transition: background 0.22s, color 0.22s, box-shadow 0.19s, transform 0.16s, border 0.13s;
}
.card,
.feature-grid li,
.testimonial-card {
  transition: box-shadow 0.23s, transform 0.16s, background 0.13s;
}
@media (hover: hover) {
  .card:hover, .feature-grid li:hover, .testimonial-card:hover {
    box-shadow: 0 9px 32px 0 rgba(35,93,58,0.17);
    background: #F3F8F1;
    transform: scale(1.013) rotate(-0.8deg);
  }
}

/* ========== RESPONSIVE SPACING AND SCALE ========== */
@media (max-width: 600px) {
  .section {
    padding: 13px 3px;
    margin-bottom: 30px;
    border-radius: 12px 20px 12px 20px/20px 12px 20px 12px;
  }
  .hero {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .container {
    padding: 0 7px;
  }
}

/* ========== VISUAL HIERARCHY ========== */
h1, .main-title {
  font-size: 2.3rem;
  color: #235D3A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.022em;
}
h2, .section-title {
  color: #235D3A;
  font-size: 1.72rem;
  font-weight: 700;
  margin-bottom: 18px;
}
@media (max-width: 700px) {
  h1, .main-title {
    font-size: 1.18rem;
    margin-bottom: 10px;
  }
  h2, .section-title {
    font-size: 1.23rem;
    margin-bottom: 9px;
  }
}

/* ========== MISCELLANEOUS ========== */
::-webkit-input-placeholder { color: #888; opacity:0.94; }
::-moz-placeholder { color: #888; opacity:0.94; }
:-ms-input-placeholder { color: #888; opacity:0.94; }
::placeholder { color: #888; opacity:0.94; }

::-webkit-scrollbar {
  width: 0.6em;
  background: #F3F8F1;
}
::-webkit-scrollbar-thumb {
  background: #CCE2BA;
  border-radius: 6px;
}

/* ========== END ========== */
