/* =====================================================
   CSS RESET & BASELINE NORMALIZATION
====================================================== */

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,
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;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F4EFE6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #264D36;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: #264D36;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8EB690;
  outline: none;
}
ul, ol {
  list-style-position: inside;
  padding-left: 0;
}
button, [type="button"], [type="submit"] {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
::-webkit-input-placeholder, ::placeholder {
  color: #a8b1a5;
  opacity: 1;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #264D36;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
strong, b {
  font-weight: 700;
}


/* =====================================================
   LAYOUT CONTAINERS & UTILITY CLASSES
====================================================== */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(49, 56, 50, 0.04), 0 1.5px 3px rgba(140, 180, 144, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 32px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(48, 68, 53, 0.05);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.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) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F4EFE6;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(38, 77, 54, 0.07);
  color: #264D36;
  transition: box-shadow 0.25s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(38, 77, 54, 0.10);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 0;
}
.text-section {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #314135;
  line-height: 1.7;
}


/* =====================================================
   HEADER & NAVIGATION
====================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(38, 77, 54, 0.04);
  padding: 0;
  z-index: 50;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header a img {
  height: 48px;
  width: auto;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #264D36;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  color: #8EB690;
  border-bottom: 2px solid #8EB690;
}
.cta-btn {
  display: inline-block;
  background: #264D36;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  border-radius: 28px;
  padding: 11px 28px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(38, 77, 54, 0.08);
  border: none;
  margin-left: 16px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #8EB690;
  color: #264D36;
  box-shadow: 0 4px 16px rgba(38, 77, 54, 0.15);
}
.mobile-menu-toggle {
  display: none;
  background: #8EB690;
  color: #fff;
  border-radius: 8px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 102;
  border: none;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #264D36;
}
@media (max-width: 990px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: relative;
  }
}

/* =====================================================
   MOBILE MENU (Hamburger Navigation)
====================================================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 32px rgba(38, 77, 54, 0.10);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.83,.11,.22,1);
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: #264D36;
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  border: none;
  width: 48px; height: 48px;
  margin: 26px 0 0 20px;
  align-self: flex-start;
  z-index: 10001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #8EB690;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 50px 0 0 0;
  padding: 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #264D36;
  padding: 10px 0;
  transition: color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #8EB690;
  text-decoration: underline;
}
@media (min-width: 991px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}


/* =====================================================
   HERO SECTION
====================================================== */
.hero {
  background: #e8f1eb;
  padding: 70px 0 60px 0;
  border-radius: 0 0 28px 28px;
  margin-bottom: 50px;
  box-shadow: 0 4px 28px rgba(38, 77, 54, 0.06);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero .content-wrapper {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero h1 {
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.18rem;
  color: #314135;
  margin-bottom: 32px;
}
.hero .cta-btn {
  margin-left: 0;
}
@media (max-width: 800px) {
  .hero {
    padding: 32px 0 32px 0;
    margin-bottom: 32px;
    border-radius: 0 0 16px 16px;
  }
  .hero .container {
    gap: 16px;
  }
  .hero .content-wrapper {
    padding: 0 4px;
  }
}


/* =====================================================
   FEATURE / SERVICES SECTIONS
====================================================== */
.features, .services {
  margin-bottom: 60px;
}
.features ul, .services ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 24px;
  margin-top: 0;
  margin-bottom: 0;
}
.features ul li, .services ul li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(38,77,54,.03);
  flex: 1 1 210px;
  min-width: 190px;
  padding: 22px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, background 0.12s;
}
.features ul li:hover, .services ul li:hover {
  box-shadow: 0 4px 12px rgba(38, 77, 54, 0.09);
  background: #F4EFE6;
}
.features ul img, .services ul img {
  height: 32px;
  width: 32px;
  margin-right: 12px;
  vertical-align: middle;
}
.features ul h3, .services ul h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
}
.services ul h3 span {
  display: inline-block;
  color: #8EB690;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 10px;
}
.features h2, .services h2 {
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .features ul, .services ul {
    gap: 12px;
  }
  .features ul li, .services ul li {
    min-width: 150px;
    padding: 14px 10px 12px 10px;
  }
}
@media (max-width: 700px) {
  .features ul, .services ul {
    flex-direction: column;
    gap: 10px;
  }
}


/* =====================================================
   TESTIMONIALS
====================================================== */
.testimonials {
  margin-bottom: 60px;
  padding: 0;
}
.testimonials .container {
  padding: 0;
}
.testimonials h2 {
  margin-bottom: 28px;
  padding-left: 20px;
}
.testimonial-card {
  background: #F4EFE6;
  border: 1.5px solid #e2e6db;
  color: #264D36;
  margin: 0 20px 24px 20px;
  transition: border-color 0.2s, box-shadow 0.21s;
}
.testimonial-card p {
  margin-bottom: 8px;
  font-style: italic;
  color: #264D36;
  font-size: 1.05rem;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #314135;
}
.testimonial-card strong {
  font-weight: 700;
}


/* =====================================================
   CONTACT SECTION
====================================================== */
.contact .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.contact .text-section {
  margin-top: 14px;
}
.contact ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  margin: 0 auto;
}
.contact ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.contact ul img {
  height: 22px;
  width: 22px;
}


/* =====================================================
   FOOTER
====================================================== */
footer {
  background: #fff;
  border-top: 1px solid #e2e6db;
  padding: 40px 0 24px 0;
  margin-top: 60px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer nav a {
  font-size: 1rem;
  color: #264D36;
  opacity: 0.8;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #8EB690;
  opacity: 1;
}
.footer-contact {
  color: #264D36;
  font-size: 0.97rem;
  line-height: 1.6;
}
.footer-contact a {
  color: #264D36;
  text-decoration: underline;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #8EB690;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  footer {
    padding: 28px 0 14px 0;
  }
}


/* =====================================================
   TYPOGRAPHY, BUTTONS, LINKS
====================================================== */
.text-section h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.075rem;
  font-weight: 650;
  margin-top: 18px;
  margin-bottom: 6px;
}
.section a:not(.cta-btn) {
  color: #8EB690;
  text-decoration: underline;
  transition: color 0.2s;
}
.section a:not(.cta-btn):hover {
  color: #264D36;
}
button, .btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  min-width: 120px;
  min-height: 44px;
  font-size: 1rem;
  border-radius: 24px;
  border: none;
  padding: 0 22px;
  margin: 0 8px;
  outline: none;
}


/* =====================================================
   RESPONSIVE & FLEXBOX MEDIA QUERIES
====================================================== */
@media (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .container {
    padding: 0 6px;
    max-width: 99vw;
  }
  .content-wrapper {
    padding: 0 2px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 14px 2px;
    margin-bottom: 18px;
  }
  .testimonial-card {
    padding: 14px 8px;
    margin: 0 2px 12px 2px;
  }
  .features ul li, .services ul li {
    padding: 10px 4px 8px 8px;
    min-width: 90vw;
  }
}
@media (max-width: 440px) {
  .footer-contact {
    font-size: 0.90rem;
  }
}

/* =====================================================
   COOKIE CONSENT BANNER + MODAL
====================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #fff;
  color: #264D36;
  box-shadow: 0 -2px 14px rgba(38, 77, 54, 0.07);
  padding: 25px 18px 22px 18px;
  z-index: 20000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 1.05rem;
  animation: cookieFadeIn 0.6s;
}
@keyframes cookieFadeIn {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}
.cookie-banner .cookie-btn {
  background: #8EB690;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 24px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 8px;
  box-shadow: 0 1.5px 8px rgba(38, 77, 54, 0.09);
  transition: background 0.2s, color 0.18s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #264D36;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #F4EFE6;
  color: #264D36;
  border: 1px solid #8EB690;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #8EB690;
  color: #fff;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 50000;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(38, 77, 54, 0.18);
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: cookieModalIn 0.45s;
}
@keyframes cookieModalIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  color: #264D36;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(38, 77, 54, 0.11);
  padding: 30px 26px;
  max-width: 420px;
  min-width: 260px;
  margin: 0 16px;
  animation: cookieModalPop 0.45s;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
@keyframes cookieModalPop {
  from {transform: scale(0.92); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
.cookie-modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #8EB690;
  color: #fff;
  font-size: 1.25rem;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  border: none;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #264D36;
}
.cookie-modal h3 {
  font-size: 1.22rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal .cookie-category {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  gap: 16px;
}
.cookie-modal .cookie-toggle {
  display: inline-block;
  width: 42px;
  height: 24px;
  background: #F4EFE6;
  border-radius: 14px;
  position: relative;
  vertical-align: middle;
  transition: background 0.2s;
}
.cookie-modal .cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .cookie-toggle span {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #8EB690;
  border-radius: 50%;
  transition: left 0.2s, background 0.2s;
}
.cookie-modal .cookie-toggle input:checked + span {
  left: 21px;
  background: #264D36;
}
.cookie-modal .cookie-category[data-essential] .cookie-toggle {
  opacity: 0.65;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
  padding: 7px 18px;
  font-size: 1rem;
}
@media (max-width: 480px) {
  .cookie-modal {
    max-width: 95vw;
    padding: 12px 6px 24px 8px;
    font-size: 0.95rem;
  }
}

/* =====================================================
   MICRO-INTERACTIONS, TRANSITIONS, BUTTON FOCUS STATES
====================================================== */
button, .cta-btn, .cookie-btn, .mobile-menu-close, .mobile-menu-toggle {
  transition: 
    background 0.22s,
    color 0.20s,
    box-shadow 0.22s,
    border 0.19s,
    transform 0.18s;
}
button:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible {
  outline: 2.5px solid #8EB690;
  outline-offset: 2px;
}

/* ========================= END OF STYLE ====================== */
