/* =====================================================
  RESET & NORMALIZE
===================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  background: #F5FAF7;
  color: #235C48;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #2E7D60;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B36C00;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
button, .cta-button {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  background: #2E7D60;
  color: #fff;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 2px 6px rgba(44, 77, 61, 0.06);
}
button:focus, .cta-button:focus {
  outline: 2px solid #B36C00;
  outline-offset: 2px;
}
.cta-button:hover, button:hover, .cta-button:active {
  background: #235C48;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(44, 77, 61, 0.13);
}

/* ===============================================
  TYPOGRAPHY 
================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 700;
  color: #235C48;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-weight: 600;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
p {
  margin-bottom: 16px;
  color: #235C48;
}
strong {
  font-weight: bold;
  color: #2E7D60;
}
em {
  font-style: italic;
  color: #7A6C4D;
}

/* =====================
   CONTAINER
====================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ===================================
   HEADER + NAVIGATION (DESKTOP)
=================================== */
header {
  background: #FFFFFF;
  box-shadow: 0 1px 12px rgba(33,80,65,0.07);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 44px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 24px;
  margin-left: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  color: #273B33;
  padding: 6px 10px;
  border-radius: 6px;
  position: relative;
  transition: color 0.14s, background 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F5FAF7;
  color: #2E7D60;
  text-decoration: none;
}

.cta-button {
  margin-left: 18px;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 8px;
  background: #2E7D60;
  color: #fff;
  border: none;
  display: inline-block;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(80, 105, 90,0.10);
  text-align: center;
  text-decoration: none;
  padding: 13px 34px;
}
.cta-button:active {
  background: #235C48;
}
.cta-button:focus {
  outline: 2px solid #B36C00;
}

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #2E7D60;
  font-size: 2rem;
  padding: 6px 14px;
  margin-left: 10px;
  border: 2px solid #2E7D60;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F5FAF7;
  color: #B36C00;
  outline: 2px solid #B36C00;
}

/* ======== MOBILE MENU OVERLAY ======== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #FFFFFF;
  z-index: 1200;
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.65,.05,.36,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 32px 32px 32px;
  box-shadow: 0 0 24px 0 rgba(50,80,60,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.5s cubic-bezier(.23,1,.32,1);
}
.mobile-menu-close {
  border: none;
  background: none;
  color: #2E7D60;
  font-size: 2.3rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 20px;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #B36C00;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.16rem;
  padding: 14px 0;
  color: #2E7D60;
  border-radius: 0;
  border-bottom: 1px solid #F5FAF7;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #B36C00;
  background: #F5FAF7;
}

@media (max-width: 1024px) {
  .container {
    max-width: 93vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 13px;
    margin-left: 8px;
  }
  .cta-button {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    gap: 12px 0;
    flex-direction: row;
  }
  .main-nav {
    display: none !important;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==================================================
   HERO, SECTIONS
================================================== */
.hero-section {
  background: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 3px 20px rgba(70,120,105, 0.10);
  margin-bottom: 60px;
  padding: 40px 0 50px 0;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 740px;
}
.hero-section h1 {
  color: #2E7D60;
  font-size: 2.5rem;
  line-height: 1.2;
}

.section, .features-section, .services-section, .testimonials-section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F5FAF7;
  border-radius: 16px;
}
.features-section, .features-section .content-wrapper, .services-section .content-wrapper {
  background: inherit;
  border-radius: inherit;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.text-section {
  margin-bottom: 20px;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Cards & Card Lists */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 9px 0 rgba(44,77,61,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  flex: 1 1 320px;
  min-width: 270px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 18px 0 rgba(33, 50, 39, 0.13);
}

.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;
    align-items: flex-start;
    gap: 18px;
  }
}

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

/* ====================================
   TESTIMONIALS
==================================== */
.testimonials-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(44,77,61,0.07);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #F5FAF7;
  border-radius: 11px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 250px;
  box-shadow: 0 2px 9px 0 rgba(34,60,46,0.06);
  transition: box-shadow 0.18s, background 0.18s;
  color: #235C48;
}
.testimonial-card p {
  color: #235C48;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #2E7D60;
  font-size: 0.96rem;
  margin-top: 6px;
  font-family: 'Georgia', serif;
  letter-spacing: 0.01em;
}
.testimonials-section .content-wrapper {
  gap: 24px;
}
.testimonial-card:focus-within, .testimonial-card:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(44,77,61,0.11);
  outline: 2px solid #B36C00;
}

/* ================================
  LISTS and ICONS
================================ */
.features-section ul, .services-section ul, .services-section ol, section ul, .text-section ul {
  margin-bottom: 16px;
  color: #235C48;
  list-style: disc outside;
  font-family: 'Georgia', serif;
  font-size: 1.10rem;
  letter-spacing: 0.01em;
  line-height: 1.8;
}
.services-section ol {
  list-style-type: decimal;
}
.features-section ul li img,
.services-section ul li img {
  vertical-align: middle;
  margin-right: 12px;
  height: 1.2em;
}
ul li, ol li {
  margin-bottom: 8px;
}

/* ================================
   FOOTER
================================ */
footer {
  background: #fff;
  border-top: 1px solid #E7EFEB;
  padding: 32px 0 12px 0;
  margin-top: 60px;
  font-size: 0.98rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #2E7D60;
  font-family: 'Georgia', serif;
  transition: color 0.16s;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 1em;
}
.footer-nav a:hover {
  color: #B36C00;
  background: #F5FAF7;
}
.footer-contact {
  color: #274637;
  font-family: 'Open Sans', sans-serif;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* =========================
   COOKIE CONSENT BANNER
========================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-top: 1px solid #E7EFEB;
  box-shadow: 0 -2px 14px 0 rgba(50, 80, 60, 0.11);
  padding: 20px 16px;
  gap: 24px;
  font-family: 'Open Sans', sans-serif;
  transition: bottom 0.4s;
  min-height: 60px;
}
.cookie-banner__text {
  font-size: 1.02rem;
  color: #235C48;
  margin-right: 16px;
}
.cookie-banner__actions {
  display: flex;
  gap: 13px;
}
.cookie-banner__button, .cookie-banner__settings {
  padding: 8px 20px;
  border-radius: 7px;
  font-family: 'Georgia', serif;
  background: #2E7D60;
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner__button.reject {
  background: #B36C00;
}
.cookie-banner__button:focus,
.cookie-banner__button:hover,
.cookie-banner__settings:hover,
.cookie-banner__settings:focus {
  background: #235C48;
  color: #fff;
}
.cookie-banner__settings {
  background: transparent;
  color: #235C48;
  border: 1px solid #2E7D60;
  font-weight: 400;
}
.cookie-banner__settings:hover {
  border-color: #B36C00;
  color: #B36C00;
  background: #F5FAF7;
}

/*
  Cookie Preferences Modal
*/
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100vw;
  height: 100vh;
  background: rgba(34,59,51, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cookie-modal-inner {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 40px 0 rgba(34,59,51,0.13);
  padding: 40px 30px 32px 30px;
  max-width: 390px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.cookie-modal-header h2 {
  font-size: 1.5rem;
  color: #2E7D60;
  margin-bottom: 0;
}
.cookie-modal-close {
  background: none;
  font-size: 1.7rem;
  border: none;
  color: #B36C00;
  cursor: pointer;
  padding: 1px 10px;
  border-radius: 4px;
  align-self: flex-end;
  transition: background 0.16s, color 0.17s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #F5FAF7;
  color: #2E7D60;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #F5FAF7;
  font-family: 'Open Sans', sans-serif;
}
.cookie-category label {
  font-size: 1.05rem;
  color: #235C48;
  font-weight: 600;
}
.cookie-toggle {
  accent-color: #2E7D60;
  width: 24px;
  height: 24px;
}
.cookie-toggle[disabled] {
  opacity: 0.5;
}
.cookie-modal-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
}
.cookie-modal-actions button {
  flex: 1;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Georgia', serif;
  background: #2E7D60;
  color: #fff;
  border: none;
  font-weight: 700;
  padding: 11px 10px;
  margin-right: 6px;
  transition: background 0.15s;
}
.cookie-modal-actions button.reject {
  background: #B36C00;
}
.cookie-modal-actions button.cancel {
  background: transparent;
  color: #235C48;
  border: 1.5px solid #2E7D60;
  font-weight: 400;
}
.cookie-modal-actions button.cancel:hover {
  background: #F5FAF7;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 980px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.08rem; }
  .hero-section, .section, .features-section, .services-section, .testimonials-section, section {
    padding: 20px 9px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .card-container,.content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card {
    min-width: 0;
    width: 100%;
    padding: 20px 12px;
  }
  .testimonial-card {
    padding: 13px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: .93rem;
  }
  .cookie-banner__actions {
    gap: 7px;
  }
}
@media (max-width: 520px) {
  .hero-section {
    padding-top: 4vw;
    padding-bottom: 5vw;
    border-radius: 0 0 16px 16px;
  }
  .card {
    border-radius: 8px;
    padding: 15px 6px;
  }
  .testimonial-card {
    border-radius: 7px;
  }
  footer .container {
    padding: 0 7px;
  }
}

/*========================================
  MICRO-INTERACTIONS / TRANSITIONS
==========================================*/
.card,.testimonial-card, .cta-button, .cookie-banner, .mobile-menu, .cookie-modal-inner {
  transition: box-shadow 0.23s cubic-bezier(.37,.18,.83,.67), background 0.19s, color 0.22s, border 0.19s;
}

/* ========= Hide cookie modal by default ========= */
.cookie-modal,
.cookie-modal[hidden] {
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  z-index: 5050;
}

/* ======================
   Z-INDEX
====================== */
header {
  z-index: 100;
}
.mobile-menu {
  z-index: 1200;
}
.cookie-banner {
  z-index: 4000;
}
.cookie-modal {
  z-index: 5050;
}

/* ========================
  UTILITY CLASSES
======================== */
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-20 { margin-bottom: 20px !important; }

.mt-16 { margin-top: 16px !important; }
.mt-20 { margin-top: 20px !important; }

.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }

/* =========================================
  CUSTOM SCROLLBARS (Elegant classic look)
========================================= */
::-webkit-scrollbar {
  width: 10px;
  background: #F5FAF7;
}
::-webkit-scrollbar-thumb {
  background: #E7EFEB;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D3E3DB;
}

/* =============================
  ENSURE GAP BETWEEN ALL MAIN CARDS/SECTIONS
============================= */
.card-container > *, .content-grid > *, .section > *, .features-section > *, .services-section > *, .testimonials-section > * {
  margin-bottom: 0 !important;
}
.card-container, .content-grid, .testimonials-section .content-wrapper {
  gap: 24px !important;
}
.section, .features-section, .services-section, .testimonials-section, section {
  margin-bottom: 60px !important;
}

/* 
    End of style.css
*/