/* ------------------------------------------------
   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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f7f9fa;
  color: #24303d;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #274B38;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #6DB29C;
  outline: none;
}
/* Typography Scale */
h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #274B38;
  line-height: 1.2;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #274B38;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #274B38;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #274B38;
}
p, li, span {
  font-size: 1rem;
  color: #24303d;
  line-height: 1.7;
}
strong {
  font-weight: 600;
}
/* ------------------------------------------------
   Layout Containers (Flex Only)
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(39, 75, 56, 0.07);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 6px;
    margin-bottom: 40px;
    border-radius: 10px;
  }
  .container {
    padding: 0 6px;
  }
}
/* ------------------------------------------------
   Header
-------------------------------------------------- */
header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 14px 0 rgba(39, 75, 56,0.06);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 12px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #24303d;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  background: transparent;
  width: 100%;
  transition: background 0.3s;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  background: #6DB29C;
}
/* Hide menu on mobile initially */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
}
.button {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  transition: background 0.22s, color 0.22s, box-shadow 0.15s;
  outline: none;
  display: inline-block;
  background: #6DB29C;
  color: #fff;
  box-shadow: 0 2px 6px rgba(39, 75, 56, 0.06);
  margin-left: 16px;
}
.button.primary {
  background: #274B38;
  color: #fff;
}
.button.primary:hover, .button.primary:focus {
  background: #6DB29C;
  color: #fff;
  box-shadow: 0 4px 14px rgba(39, 75, 56, 0.17);
}
.button:hover, .button:focus {
  background: #457560;
  color: #fff;
  box-shadow: 0 4px 14px rgba(39, 75, 56, 0.13);
}
.mobile-menu-toggle {
  display: none;
  background: #6DB29C;
  border: none;
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  padding: 6px 14px 7px 14px;
  margin-left: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(39, 75, 56,0.10);
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }
  .button.primary {
    margin-left: 0;
  }
}
/* ------------------------------------------------
   Mobile Menu Overlay & Animations
-------------------------------------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39, 75, 56, 0.96);
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.72,.09,.41,.98);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 24px;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #fff;
  z-index: 110;
  cursor: pointer;
  padding: 6px 12px;
  transition: background 0.18s;
  border-radius: 5px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(255,255,255,0.08);
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #fff;
  padding: 14px 36px;
  width: 100%;
  text-align: center;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
  margin-bottom: 3px;
  font-weight: 500;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #6DB29C;
  color: #fff;
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}
/* ------------------------------------------------
   Hero Section
-------------------------------------------------- */
.hero {
  background: linear-gradient(89deg,#f0f4f8 0%, #eaf4ee 100%);
  border-bottom: 1px solid #e0e5ea;
  padding: 56px 0 40px 0;
  margin-bottom: 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
  min-height: 260px;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 720px;
}
.hero h1 {
  color: #274B38;
  margin-bottom: 18px;
}
.hero p {
  color: #457560;
  font-size: 1.125rem;
  margin-bottom: 26px;
}
@media (max-width: 600px) {
  .hero {
    padding: 35px 0 22px 0;
  }
  .hero .container {
    min-height: 140px;
  }
}
/* ------------------------------------------------
   Features & Icon Grid
-------------------------------------------------- */
.feature-grid, .icon-grid, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 14px;
}
.feature {
  background: #f7fbfa;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(39, 75, 56, 0.09);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 265px;
  padding: 30px 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1px solid #e4ece7;
}
.feature img {
  height: 44px;
  width: 44px;
  margin-bottom: 8px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 6px 20px rgba(109,178,156,0.16);
  transform: translateY(-3px) scale(1.03);
  border-color: #6DB29C33;
}
.icon-grid {
  gap: 28px;
}
.icon-feature {
  background: #f7fbfa;
  border-radius: 13px;
  flex: 1 1 210px;
  max-width: 260px;
  min-width: 210px;
  padding: 22px 17px 20px 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  box-shadow: 0 1px 7px rgba(39, 75, 56, 0.07);
  border: 1px solid #e4ece7;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.icon-feature img {
  height: 38px;
  width: 38px;
  margin-bottom: 7px;
}
.icon-feature:hover, .icon-feature:focus-within {
  box-shadow: 0 5px 16px rgba(109, 178, 156,0.17);
  transform: translateY(-2px) scale(1.025);
  border-color: #6DB29C33;
}
@media (max-width: 900px) {
  .feature-grid, .icon-grid, .testimonial-list {
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .feature-grid, .icon-grid, .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature, .icon-feature {
    max-width: unset;
    min-width: 0;
    width: 100%;
  }
}
.icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}
.icon-list li {
  min-width: 160px;
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f7fbfa;
  padding: 10px 11px 10px 12px;
  border-radius: 10px;
  margin-bottom: 6px;
  box-shadow: 0 1px 5px rgba(39, 75, 56, 0.04);
  font-size: 1rem;
}
.icon-list img {
  height: 28px;
  width: 28px;
}
@media (max-width: 700px) {
  .icon-list {
    flex-direction: column;
    gap: 10px;
  }
}
/* ------------------------------------------------
   Cards & Content Grids
-------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fbfbfe;
  border: 1px solid #e1e6ea;
  border-radius: 13px;
  box-shadow: 0 1px 10px 0 rgba(39, 75, 56, 0.07);
  padding: 24px 18px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 270px;
  min-width: 240px;
  transition: box-shadow 0.15s, transform 0.1s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 20px rgba(39, 75, 56, 0.10);
  transform: translateY(-4px) scale(1.01);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 16px;
}
@media (max-width: 700px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .card {
    min-width: 0;
    width: 100%;
  }
}
/* ------------------------------------------------
   Text/Image Sections & FAQ
-------------------------------------------------- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.faq-item {
  background: #f8fcfa;
  border: 1px solid #e2ece8;
  border-radius: 10px;
  padding: 16px 16px 14px 16px;
  color: #24303d;
  font-size: 1rem;
}
/* ------------------------------------------------
   Services & Lists
-------------------------------------------------- */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
  margin-bottom: 16px;
}
.service-list li {
  background: #f4f8f6;
  border-left: 4px solid #6DB29C;
  border-radius: 9px;
  padding: 17px 16px 13px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  font-size: 1rem;
  font-weight: 400;
}
.service-price {
  font-size: 1.08rem;
  font-weight: 600;
  color: #274B38;
  margin-left: auto;
}
.benefits-list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.values-list ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 600px) {
  .service-list li {
    font-size: .98rem;
    flex-direction: column;
    gap: 6px;
    padding: 11px 10px 9px 10px;
  }
}
/* ------------------------------------------------
   Testimonials
-------------------------------------------------- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.testimonial-card {
  background: #f2f7f5;
  color: #1f2937;
  border: 1px solid #d2e3db;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(39, 75, 56, 0.06);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 400px;
  flex: 1 1 230px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.13s;
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #254735;
  font-style: italic;
}
.testimonial-card span {
  font-size: .97rem;
  color: #56786b;
  font-weight: 500;
  margin-left: 11px;
}
.testimonial-card:after {
  content: '\201C';
  color: #6DB29C;
  font-size: 2rem;
  position: absolute;
  top: 15px; left: 16px;
  opacity: 0.10;
  pointer-events: none;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 22px rgba(39, 75, 56, 0.14);
  transform: translateY(-2px) scale(1.02);
}
@media (max-width: 768px) {
  .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: unset;
  }
}
/* ------------------------------------------------
   Footer
-------------------------------------------------- */
footer {
  background: #24303d;
  color: #e1ede7;
  padding: 32px 0 24px 0;
  box-shadow: 0 -2px 8px 0 rgba(39, 75, 56, 0.04);
  font-size: 1rem;
}
footer .container {
  gap: 18px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #e1ede7;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  opacity: 0.88;
  transition: color 0.16s, opacity 0.16s;
  border-radius: 4px;
  padding: 3px 6px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #6DB29C;
  opacity: 1;
}
footer p {
  color: #e1ede7;
  font-size: 0.97rem;
  margin-top: 10px;
}
@media (max-width: 700px) {
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  footer .container {
    padding: 0 10px;
  }
}
/* ------------------------------------------------
   Cookie Consent Banner & Modal
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  width: 100%;
  background: #24303d;
  color: #ffffff;
  box-shadow: 0 -2px 18px rgba(39, 75, 56, 0.20);
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  transition: transform 0.34s, opacity 0.25s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner p {
  color: #ffffff;
  font-size: 0.98rem;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.cookie-banner .button, .cookie-banner button {
  padding: 10px 22px;
  font-size: 1rem;
  min-width: 110px;
}
.cookie-banner .accept {
  background: #6DB29C;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #457560;
}
.cookie-banner .reject {
  background: #e5eaea;
  color: #274B38;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #d3dfdb;
}
.cookie-banner .cookie-settings {
  background: transparent;
  border: 1px solid #6DB29C;
  color: #6DB29C;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #6DB29C;
  color: #fff;
}
@media (max-width: 520px){
  .cookie-banner {
    padding: 18px 6px 18px 6px;
    align-items: flex-start;
  }
  .cookie-banner .cookie-btn-group {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
}
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1300;
  background: rgba(36,48,61,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal .modal-content {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 7px 36px rgba(39, 75, 56, 0.22);
  padding: 38px 32px 30px 32px;
  min-width: 300px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal .modal-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #274B38;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0;
}
.cookie-modal .modal-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 14px;
}
.cookie-modal .modal-category label {
  font-size: 1rem;
  color: #24303d;
  font-weight: 500;
}
.cookie-modal .modal-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #6DB29C;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: #274B38;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 6px;
  padding: 2px 10px;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #f0f4f8;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-modal .modal-actions button {
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  background: #6DB29C;
  color: #fff;
  transition: background 0.16s;
}
.cookie-modal .modal-actions .secondary {
  background: #24303d;
  color: #fff;
}
.cookie-modal .modal-actions button:hover, .cookie-modal .modal-actions button:focus {
  background: #457560;
}
@media (max-width: 460px) {
  .cookie-modal .modal-content {
    padding: 20px 6px 16px 6px;
  }
}
/* ------------------------------------------------
   Miscellaneous, Utility, Micro-interactions
-------------------------------------------------- */
::-webkit-input-placeholder { color: #98b0a6; font-size: 1rem; }
::-moz-placeholder { color: #98b0a6; font-size: 1rem; }
:-ms-input-placeholder { color: #98b0a6; font-size: 1rem; }
::placeholder { color: #98b0a6; font-size: 1rem; }

input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 9px 14px;
  border: 1px solid #bcd7c9;
  border-radius: 8px;
  background: #f4f8f6;
  color: #24303d;
  margin-bottom: 16px;
  transition: border-color 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #6DB29C;
  outline: none;
  background: #fff;
}
/* Scrollbar Styling */
::-webkit-scrollbar {
  width:8px; background:#e2e9e6;
}
::-webkit-scrollbar-thumb {
  background-color:#274B38;
  border-radius:4px;
}
/* Highlight */
::selection { background: #6DB29C; color: #fff; }

/* Hide empty social */
.social-links:empty {
  display: none;
}

/* ------------------------------------------------
   Responsive: Mobile Only Rules
-------------------------------------------------- */
@media (max-width: 600px) {
  html, body {
    font-size: 15px;
  }
  .logo img {
    height: 37px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 1rem;
    padding-right: 0;
  }
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    transition: none !important;
    animation: none !important;
  }
}
