/* === RESET & NORMALIZE === */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }
body, html { height: 100%; }
body {
  min-height: 100vh;
  background: #F2F8F3;
  color: #22302E;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #235755; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #68A16D; outline: none; text-decoration: underline; }
ul, ol { list-style: none; }
button { font-family: inherit; font-size: inherit; border: 0; background: none; cursor: pointer; }
:focus-visible { outline: 2px solid #68A16D; outline-offset: 2px; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #235755;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h1 { font-size: 2.5rem; line-height: 1.15; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
strong, b { font-weight: 700; }
p, .lead { margin-bottom: 20px; }
.lead { font-size: 1.2rem; font-family: 'Montserrat', Arial, Helvetica, sans-serif; color: #22302E; font-weight: 700; }

/* === GLOBAL CONTAINER & LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* === HEADER === */
header {
  background: #235755;
  color: #fff;
  padding: 0;
  box-shadow: 0 6px 16px rgba(35, 87, 85, 0.08);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
.logo img {
  height: 48px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #F2F8F3;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #68A16D;
  color: #235755;
}
.btn-primary {
  display: inline-block;
  background: #68A16D;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 24px;
  letter-spacing: 1px;
  padding: 12px 32px;
  box-shadow: 0 3px 16px rgba(104, 161, 109, 0.11);
  margin-left: 12px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #235755;
  color: #fff;
  box-shadow: 0 6px 32px rgba(35, 87, 85, 0.15);
  transform: translateY(-2px) scale(1.02);
}
.mobile-menu-toggle {
  display: none;
  background: #68A16D;
  color: #fff;
  font-size: 2rem;
  border-radius: 10px;
  margin-left: 12px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #235755;
}

/* === MOBILE NAVIGATION === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #235755;
  color: #fff;
  z-index: 1001;
  box-shadow: 0 12px 32px rgba(35,87,85,0.13);
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.62,.12,.62,.94);
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 26px 26px 0 0;
  border-radius: 10px;
  transition: background 0.18s;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #68A16D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-left: 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 18px;
  line-height: 1.2;
  background: none;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #68A16D;
  color: #235755;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 6px;
  }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .btn-primary { margin-left: 0; }
  .mobile-menu-toggle { display: flex; }
  .container {
    padding: 0 10px;
  }
}

/* === HERO, SECTIONS, LAYOUT === */
main {
  padding-bottom: 60px;
  min-height: 60vh;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 30px rgba(35,87,85,0.08);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
section .container {
  gap: 32px;
}
@media (max-width: 900px) {
  section { padding: 30px 4vw; border-radius: 20px; }
}
@media (max-width: 600px) {
  section {
    margin-bottom: 36px;
    padding: 16px 4vw;
    border-radius: 14px;
    gap: 24px;
  }
}

/* === CARDS & FLEX CONTAINERS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  background: #F2F8F3;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(104,161,109,0.10);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.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) {
  .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === SERVICE & FEATURE CARDS === */
.service-card {
  background: #F2F8F3;
  border: 2px solid #68A16D;
  border-radius: 24px;
  padding: 24px 32px;
  margin-bottom: 20px;
  box-shadow: 0 3px 14px rgba(104,161,109,0.13);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Open Sans', sans-serif;
  min-width: 230px;
  flex: 1 1 320px;
  position: relative;
}
.service-card h3 {
  color: #235755;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #68A16D;
  margin-top: 6px;
  font-size: 1rem;
}
@media (max-width: 700px) {
  .service-card { padding: 18px 10px; border-radius: 14px; }
}

/* === FEATURE ICON LISTS (INDEX, ABOUT) === */
.content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  align-items: stretch;
}
.content-wrapper ul li {
  background: #fff;
  border: 2px solid #23575533;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 2px 8px rgba(35, 87, 85, 0.08);
  min-width: 200px;
  min-height: 120px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.content-wrapper ul li img {
  margin-bottom: 4px;
  width: 36px;
  height: 36px;
}
.content-wrapper ul li strong, .content-wrapper ul li h3 {
  color: #68A16D;
  font-size: 1.07rem;
}
@media (max-width: 700px) {
  .content-wrapper ul { gap: 14px; }
  .content-wrapper ul li { min-width: 140px; padding: 14px 10px; border-radius: 10px; }
}

/* === TESTIMONIAL CARDS === */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 2px solid #23575525;
  box-shadow: 0 2px 18px rgba(35,87,85,0.08);
  border-radius: 24px;
  padding: 20px 32px;
  margin-bottom: 20px;
  flex: 1 1 100%;
  position: relative;
  max-width: 800px;
}
.testimonial-card blockquote {
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  color: #22302E;
  font-size: 1.15rem;
  margin: 0;
  quotes: "\201E" "\201D";
}
.testimonial-card footer {
  font-size: 0.97rem;
  color: #68A16D;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-top: 7px;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 8px;
    border-radius: 12px;
  }
}

/* === FOOTER === */
footer {
  background: #235755;
  color: #fff;
  padding: 40px 0 22px 0;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -8px 24px rgba(35,87,85,0.10);
}
footer .container {
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}
.footer-brand img {
  width: 56px; height: 56px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #F2F8F3;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 4px 0;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #68A16D;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
}
.footer-contact img {
  margin-right: 6px;
  width: 22px; height: 22px;
  vertical-align: middle;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-brand img { width: 38px; height: 38px; }
}

/* === MISCELLANEOUS === */
.category {
  background: #68A16D;
  color: #fff;
  border-radius: 8px;
  padding: 2px 10px;
  font-size: 0.85rem;
  margin-left: 8px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
}
.map {
  background: #F2F8F3;
  padding: 10px 18px;
  border-radius: 8px;
  border: 2px solid #68A16D77;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
}

/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #235755;
  color: #fff;
  z-index: 2000;
  box-shadow: 0 -4px 20px rgba(35,87,85,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 28px;
  padding: 24px 36px;
  font-size: 1rem;
  font-family: 'Open Sans',sans-serif;
  transition: transform 0.35s;
  min-height: 66px;
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-banner .cookie-text {
  flex: 1 1 auto;
  margin-right: 18px;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 16px;
  font-family: 'Montserrat',sans-serif;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  border: 0;
  background: #68A16D;
  color: #fff;
  transition: background 0.15s, color 0.15s;
  margin-right: 2px;
}
.cookie-btn.cookie-reject {
  background: #F2F8F3;
  color: #235755;
  border: 2px solid #68A16D;
}
.cookie-btn.cookie-settings {
  background: #fff;
  color: #235755;
  border: 2px solid #68A16D;
}
.cookie-btn:active, .cookie-btn:focus {
  background: #235755;
  color: #fff;
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2100;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,87,85,0.66);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #235755;
  max-width: 420px;
  width: 94vw;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(35,87,85,0.18);
  padding: 30px 18px 20px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 10px;
  margin-bottom: 14px;
}
.cookie-modal .category-desc {
  font-size: 0.93rem;
  color: #22302E;
  margin-bottom: 9px;
}
.cookie-modal .toggle {
  appearance: none;
  width: 34px;
  height: 20px;
  background: #F2F8F3;
  border: 2px solid #68A16D;
  border-radius: 14px;
  position: relative;
  outline: none;
  margin-top: 0;
  margin-bottom: 0;
  cursor: pointer;
  transition: border 0.15s, box-shadow 0.14s;
}
.cookie-modal .toggle:checked {
  background: #68A16D;
  border-color: #235755;
}
.cookie-modal .toggle:before {
  content: '';
  display: block;
  background: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: 1px; left: 2px;
  transition: left 0.15s;
}
.cookie-modal .toggle:checked:before {
  left: 14px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 15px;
}
.cookie-modal .cookie-btn {
  min-width: 120px;
}
.cookie-modal .cookie-btn:last-child { margin-right: 0; }

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; padding: 18px 8px; gap: 14px; }
  .cookie-banner .cookie-text { margin-right: 0; }
  .footer-brand img { width: 30px; height: 30px; }
}

/* === UTILITIES & ANIMATIONS === */
.fade-in {
  opacity: 0; animation: fadeIn .68s forwards ease-in;}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.slide-in-left { animation: slideInLeft 0.48s forwards cubic-bezier(.62,.22,.62,.94); }
@keyframes slideInLeft { from{transform:translateX(-100vw);} to{transform:translateX(0);} }
.slide-out-left { animation: slideOutLeft 0.48s forwards cubic-bezier(.62,.22,.62,.94); }
@keyframes slideOutLeft { from{transform:translateX(0);} to{transform:translateX(-100vw);} }

/* === TYPOGRAPHY SCALE === */
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.08rem; }
  body { font-size: 15px; }
  section { gap: 16px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1rem; }
  .lead { font-size: 1.01rem; }
}

/* --- ENSURE FLEXBOX ONLY - No grid/columns used! --- */

