/* CSS RESET & NORMALIZE */
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,
main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #EFF2F0;
  color: #205D51;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button { cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
th, td { text-align: left; padding: 12px 10px; }

/* BRAND VARIABLES */
:root {
  --color-primary: #205D51;
  --color-secondary: #EFF2F0;
  --color-accent: #E8965A;
  --color-accent-dark: #C46B16;
  --color-white: #fff;
  --color-bg: #EFF2F0;
  --radius: 18px;
  --shadow: 0 4px 24px 0 rgba(56,47,0,0.075);
}

/* CONTAINERS & LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.footer-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 32px 0 16px 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
  border-radius: var(--radius);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  margin-bottom: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(32,93,81,0.10);
  transform: translateY(-4px) scale(1.02);
}
.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  color: #1c422e;
  box-shadow: var(--shadow);
  min-width: 260px;
  max-width: 370px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--color-primary);
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(32,93,81,0.12);
  transform: scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover {
  box-shadow: 0 8px 28px 0 rgba(232,150,90,0.13);
  transform: translateY(-4px) scale(1.03);
}

/* FLEX FEATURE GRID */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 240px;
  min-width: 220px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 28px 0 rgba(232,150,90,0.13);
  transform: translateY(-4px) scale(1.04);
}
.feature-grid img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  margin-bottom: 8px;
}

/* NAVIGATION */
header {
  background: var(--color-white);
  box-shadow: 0 2px 12px 0 rgba(32,93,81,0.07);
  position: relative;
  z-index: 10;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background .18s, color .18s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-accent);
  color: var(--color-white);
}
.primary-cta {
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 28px;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-left: 16px;
  min-width: 220px;
  text-align: center;
  box-shadow: 0 2px 10px 0 rgba(232,150,90,0.11);
  transition: background .18s, box-shadow .18s, color .15s;
  border: none;
  outline: none;
}
.primary-cta:hover, .primary-cta:focus {
  background: var(--color-accent-dark);
  color: #fff;
  box-shadow: 0 6px 20px 0 rgba(196,107,22,0.18);
  transform: translateY(-2px) scale(1.032);
}

/* HAMBURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--color-white);
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  font-size: 32px;
  padding: 4px 13px 2px 13px;
  margin: 4px 8px 4px 0;
  color: var(--color-accent-dark);
  position: absolute;
  top: 52px;
  right: 18px;
  z-index: 99;
  transition: background 0.12s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: #fff;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px 0 rgba(32,93,81,0.11);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.57,0.37,0.53,1.02);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 24px 0 0;
  font-size: 32px;
  color: var(--color-accent-dark);
  border-radius: 50%;
  background: var(--color-secondary);
  padding: 2px 15px 2px 15px;
  border: 2px solid var(--color-accent);
  transition: background 0.13s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  border-radius: 14px;
  padding: 13px 0 13px 0;
  width: 100%;
  text-align: center;
  transition: background 0.18s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(96deg, #EFF2F0 65%, #FBE2C8 100%);
  border-radius: 0 0 32px 32px;
  margin-bottom: 52px;
  padding-bottom: 0;
  box-shadow: 0 6px 36px -12px rgba(32,93,81,0.07);
  min-height: 310px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 240px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 22px;
  font-weight: 700;
  line-height: 1.15;
}
.hero p {
  color: #325C4B;
  font-size: 19px;
  margin-bottom: 22px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* SERVICE LIST & CARD */
.service-list, .service-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.service-list > div, .service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  min-width: 230px;
  flex: 1 1 260px;
  transition: box-shadow 0.18s, transform 0.2s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list > div:hover, .service-card:hover {
  box-shadow: 0 8px 28px 0 rgba(232,150,90,0.13);
  transform: translateY(-3px) scale(1.02);
}
.service-price, .service-card > div strong {
  color: var(--color-accent-dark);
  font-weight: 700;
  font-size: 17px;
  margin-top: 5px;
}

/* PRICING TABLE */
.pricing-table {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 12px 20px 12px;
  margin-bottom: 36px;
  overflow-x: auto;
}
.pricing-table th {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 17px;
  background: var(--color-secondary);
  border-bottom: 2px solid var(--color-accent);
  font-weight: 700;
}
.pricing-table td {
  font-size: 16px;
  color: #2b4227;
}
.pricing-table tr:not(:last-child) {
  border-bottom: 1px solid #e7e7e7;
}
.pricing-notes {
  font-size: 14px;
  color: #A27332;
  margin-top: 14px;
  font-style: italic;
}

/* TESTIMONIALS */
.testimonial-carousel,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: 12px;
}
.testimonial-card {
  background: #fff;
  color: #1c422e;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 220px;
  max-width: 350px;
  font-size: 17px;
  position: relative;
}
.testimonial-card div {
  color: var(--color-accent-dark);
  font-size: 19px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* CTA SNIPPET/CONTACT */
.contact-snippet,
.footer-contact {
  font-size: 15px;
  color: #205D51;
  background: var(--color-secondary);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 16px;
  font-family: 'Roboto', Arial, sans-serif;
}

.contact-details p {
  margin-bottom: 8px;
}

/* FOOTER */
footer {
  background: #F7F6F5;
  box-shadow: 0 -2px 12px 0 rgba(32,93,81,0.04);
}
footer nav {
  display: flex;
  gap: 22px;
}
footer nav a {
  color: #777;
  font-size: 15px;
  border-radius: 6px;
  padding: 4px 10px;
  transition: background .12s, color .15s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  line-height: 1.18;
  font-weight: 700;
}
h1 { font-size: 32px; margin-bottom: 12px; }
h2 { font-size: 24px; margin-bottom: 8px; }
h3 { font-size: 19px; margin-bottom: 6px; }
h4, h5, h6 { font-size: 16px; font-weight: 600; }
p, ul li, ol li {
  font-family: 'Roboto', Arial, sans-serif;
  color: #27563c;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.64;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 0;
  padding-left: 0;
}
ul li, ol li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
}
ul li:before {
  content: '•';
  color: var(--color-accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}

/* TABLES */
table {
  width: 100%;
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
th, td {
  padding: 14px 10px;
}

/* FORMS (if any) */
input, textarea, select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9c9c9;
  margin-bottom: 16px;
  background: #fff;
  font-size: 16px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  outline: 2px solid var(--color-accent);
}

/* COOKIE CONSENT */
.cookie-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffdfa;
  box-shadow: 0 -4px 24px 0 rgba(196,107,22,0.13);
  border-radius: 18px 18px 0 0;
  padding: 16px 28px 18px 24px;
  justify-content: space-between;
  z-index: 3999;
  font-size: 16px;
  animation: cookieIn 0.5s ease;
}
@keyframes cookieIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 18px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(196,107,22,0.05);
  transition: background 0.17s, color 0.15s;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-accent-dark);
  border: 2px solid var(--color-accent-dark);
}
.cookie-btn.settings {
  background: var(--color-primary);
  color: var(--color-white);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-accent-dark);
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #f4d9bd;
  color: var(--color-accent-dark);
}

/* COOKIE MODAL */
.cookie-modal-background {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,93,81,0.20);
  z-index: 4000;
  align-items: center;
  justify-content: center;
  animation: fadein 0.26s;
}
.cookie-modal-background.open {
  display: flex;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  padding: 36px 34px;
  min-width: 310px;
  max-width: 96vw;
  box-shadow: 0 10px 44px 0 rgba(32,93,81,0.18);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookiemodalin 0.31s cubic-bezier(.56,1.3,.45,0.93);
}
@keyframes cookiemodalin {
  0% { transform: scale(0.9) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 23px;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 16px;
  color: var(--color-primary);
  font-family: 'Montserrat',Arial,sans-serif;
}
.cookie-toggle {
  width: 38px; height: 21px; position: relative;
}
.cookie-toggle input { display: none; }
.cookie-toggle span {
  display: block;
  width: 38px; height: 21px;
  border-radius: 13px;
  background: #e7e7e7;
  position: relative;
  transition: background 0.17s;
}
.cookie-toggle input:checked + span {
  background: var(--color-accent);
}
.cookie-toggle span::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px #bebebe16;
  transition: left 0.18s;
}
.cookie-toggle input:checked + span::after { left: 20px; }
.cookie-close-modal {
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--color-accent-dark);
  align-self: flex-end;
  margin-top: -24px;
}
.cookie-close-modal:hover, .cookie-close-modal:focus {
  color: var(--color-accent);
}

/* ANIMATIONS */
.primary-cta, .card, .feature-item, .service-card, .testimonial-card, .mobile-menu, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.17s, transform 0.18s, background 0.16s, color 0.14s;
}

/* UTILITIES */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.gap-20 { gap: 20px; }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
  .feature-grid > div,
  .service-list > div,
  .service-card {
    min-width: 200px;
    flex: 1 1 240px;
    padding: 20px 12px;
  }
}
@media (max-width: 950px) {
  .header-flex { flex-wrap: wrap; gap: 10px; }
  .footer-flex { flex-wrap: wrap; gap: 20px; }
  .feature-grid { gap: 18px; }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 7px;
  }
  .header-flex { flex-wrap: wrap; gap: 8px; }
  .footer-flex { flex-direction: column; gap: 18px; }
  header nav { display: none; }
  .mobile-menu-toggle {
    display: inline-block;
    position: fixed;
    top: 14px;
    right: 18px;
  }
  .hero { padding: 32px 0 36px 0; }
  .content-wrapper, .text-section {
    gap: 22px;
    padding: 0;
  }
  .feature-grid,
  .service-list,
  .testimonial-carousel, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div,
  .service-list > div,
  .service-card {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
    padding: 20px 10px;
  }
  .section {
    padding: 28px 6px;
    margin-bottom: 44px;
  }
  .contact-snippet, .footer-contact {
    font-size: 14px;
    padding: 12px 8px;
  }
  .content-grid { flex-direction: column; gap: 14px; }
  .text-image-section { flex-direction: column; gap: 16px; }
  .primary-cta {
    margin-left: 0;
    margin-top: 15px;
    min-width: 80%;
    font-size: 16px;
  }
  .testimonial-card { min-width: 0; max-width: 100%; }
  .pricing-table { padding: 14px 3px; }
}

@media (max-width: 520px) {
  h1 { font-size: 23px; }
  h2 { font-size: 17px; }
  h3 { font-size: 15px; }
  .primary-cta { min-width: unset; font-size: 15px; padding: 10px 10px; }
  .feature-grid > div, .service-list > div, .service-card, .testimonial-card {
    padding: 13px 4px;
  }
}
