/* =========================================================
   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, 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #294840;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #294840;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
  font-weight: 600;
}
a:hover, a:focus {
  color: #46725A;
}
ul, ol {
  margin: 16px 0;
  padding-left: 24px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
/* Layout Containers */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* =========================================================
   Typography
   ========================================================= */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold'), url('https://fonts.gstatic.com/s/montserrat/v24/JTUHjIg1_i6t8kCHKm.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  src: local('Montserrat Black'), local('Montserrat-Black'), url('https://fonts.gstatic.com/s/montserrat/v24/JTUHjIg1_i6t8kCHKm.woff2') format('woff2');
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #294840;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.12;
}
h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.125rem; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
}
p, ul, ol {
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #294840;
}

/* Headings accent */
h1 strong, h2 strong, h3 strong { color: #46725A; }

/* Section Styles */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 32px 0 rgba(41,72,64,0.09);
  position: relative;
}

/* HERO SECTION */
.hero {
  min-height: 432px;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #EAD8C0;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero h1 {
  color: #294840;
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.hero p {
  color: #294840;
  font-size: 1.18rem;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .hero h1 { font-size: 1.5rem; }
  .hero p { font-size: 1rem; }
}

/* Features Grid & Cards */
.features, .feature-section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-card {
  flex: 1 1 220px;
  min-width: 270px;
  max-width: 340px;
  background: #fff;
  color: #294840;
  border-radius: 24px;
  box-shadow: 0 6px 32px 0 rgba(41,72,64,0.11);
  padding: 30px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.2s cubic-bezier(.4,0,.2,1), transform 0.15s cubic-bezier(.4,0,.2,1);
}
.feature-card:hover, .feature-card:focus {
  box-shadow: 0 10px 40px 0 rgba(41,72,64,0.25);
  transform: translateY(-3px) scale(1.03);
  z-index: 2;
}
.feature-card img {
  width: 42px;
  height: 42px;
  background: #46725A10;
  border-radius: 50%;
  padding: 7px;
  margin-bottom: 6px;
}
.feature-card h3 {
  font-size: 1.11rem;
  color: #294840;
  margin-bottom: 6px;
  font-weight: 800;
}
.feature-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #46725A;
  font-size: 1.08rem;
  margin-top: auto;
  margin-bottom: 2px;
}
@media (max-width: 999px) {
  .feature-grid { gap: 20px; }
  .feature-card { min-width: 210px; }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-card {
    max-width: 96vw;
    min-width: 0;
    width: 100%;
  }
}

/* General Card Styles */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 16px 0 rgba(41,72,64,0.08);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 20px;
  transition: box-shadow 0.2s cubic-bezier(.4,0,.2,1), transform 0.15s cubic-bezier(.4,0,.2,1);
}
.card:hover, .card:focus {
  box-shadow: 0 10px 40px 0 rgba(41,72,64,0.16);
  transform: translateY(-4px) scale(1.014);
  z-index: 2;
}

/* Text-Image Section */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* Content Grid (not grid!) */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* Testimonial Cards */
.testimonials {
  background: #F6F7F5;
  padding: 40px 0;
}
.testimonials .content-wrapper {
  gap: 28px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px 0 rgba(41,72,64,0.07);
  margin-bottom: 20px;
  max-width: 650px;
  color: #294840;
  font-size: 1rem;
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: box-shadow 0.2s cubic-bezier(.4,0,.2,1), transform 0.11s cubic-bezier(.4,0,.2,1);
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(70,114,90,0.17);
  transform: scale(1.01) translateY(-2px);
}
.testimonial-card span {
  color: #46725A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-left: auto;
  font-size: 0.97rem;
}
@media (max-width: 768px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 7px; }
}

/* Feature List Item */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 22px 18px;
  border-radius: 18px;
  box-shadow: 0 1px 8px 0 rgba(41,72,64,0.04);
  margin-bottom: 18px;
}

/* CTA Section and Button */
.cta {
  background: #46725A;
  color: #fff;
  border-radius: 28px;
  box-shadow: 0 1px 16px 0 rgba(41,72,64,0.06);
  padding: 40px 0;
  margin-top: 32px;
}
.cta h2, .cta p { color: #fff; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #294840;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 800;
  padding: 14px 34px;
  border-radius: 26px;
  border: none;
  box-shadow: 0 3px 16px 0 rgba(41,72,64,0.08);
  transition: background 0.18s cubic-bezier(.4,0,.2,1), transform 0.14s cubic-bezier(.4,0,.2,1);
  margin-top: 16px;
  letter-spacing: 0.02em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #46725A;
  transform: scale(1.045);
}

/* Pricing Table */
.pricing-table {
  margin: 18px 0 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #46725A;
}

/* ABOUT SECTION */
.about {
  background: #fff;
  padding: 34px 0;
  margin-bottom: 60px;
  border-radius: 32px;
}

/* SERVICE Section */
.services {
  background: #F6F7F5;
  padding: 36px 0;
  border-radius: 30px;
  margin-bottom: 60px;
}

/* Contact Page Styles */
.contact-details {
  margin-bottom: 60px;
  padding: 36px 0 32px 0;
  display: flex;
}
.contact-details ul {
  margin-bottom: 24px;
}
.contact-info-note {
  background: #EAD8C0;
  padding: 18px 22px;
  border-radius: 18px;
  color: #294840;
  font-size: 1rem;
  font-style: italic;
  margin-top: 12px;
}

/* Thank You Section */
.thankyou {
  background: #F6F7F5;
  padding: 40px 0 48px 0;
  border-radius: 28px;
  min-height: 340px;
  text-align: center;
}

/* Legal section */
.legal {
  min-height: 350px;
  background: #fff;
  margin-bottom: 50px;
  padding: 32px 0;
  border-radius: 24px;
}
.legal h1, .legal h2 {
  margin-bottom: 14px;
}
.legal ul {
  margin-bottom: 26px;
}
.legal p + h2, .legal p + h3 {
  margin-top: 32px;
}

/* =========================================================
   Header and Navigation
   ========================================================= */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(41,72,64,0.05);
  position: sticky;
  top: 0;
  z-index: 1100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}
header img {
  height: 58px;
  max-width: 210px;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #294840;
  padding: 8px 20px;
  border-radius: 20px;
  transition: background 0.2s cubic-bezier(.4,0,.2,1), color 0.2s cubic-bezier(.4,0,.2,1);
}
.main-nav a:hover, .main-nav a.active {
  background: #EAD8C0;
  color: #46725A;
}
@media (max-width: 1023px) {
  header .main-nav {
    display: none;
  }
  header .cta-btn {
    display: none;
  }
}

/* Mobile Menu Trigger */
.mobile-menu-toggle {
  display: none;
  background: #294840;
  color: #fff;
  font-size: 2.2rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  position: relative;
  z-index: 1201;
  margin-left: auto;
  transition: background 0.18s cubic-bezier(.4,0,.2,1);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #46725A;
  outline: 2px solid #EAD8C0;
}
@media (max-width: 1023px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #294840;
  color: #fff;
  z-index: 1200;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1), transform 0.32s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #EAD8C0;
  color: #294840;
  font-size: 2.6rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin-top: 28px;
  margin-right: 30px;
  transition: background 0.18s cubic-bezier(.4,0,.2,1), color 0.18s cubic-bezier(.4,0,.2,1);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #46725A;
  color: #fff;
}
.mobile-nav {
  margin: 48px 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  padding: 12px 0 12px 8px;
  border-radius: 16px;
  transition: background 0.19s, color 0.16s; 
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EAD8C0;
  color: #294840;
}
@media (min-width: 1024px) {
  .mobile-menu { display: none; }
  .mobile-menu-toggle { display: none; }
}

/* Add padding so mobile menu doesn't overlap header on small screens */
@media (max-width: 1023px) {
  body {
    padding-top: 70px;
  }
}

/* =========================================================
   Footer
   ========================================================= */
footer {
  background: #294840;
  color: #fff;
  padding: 42px 0 32px 0;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 44px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #EAD8C0;
  font-weight: 700;
  letter-spacing: .01em;
  font-size: 1rem;
  transition: color 0.18s, text-decoration 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact p, .footer-contact a {
  color: #fff;
  font-size: 1rem;
  opacity: .9;
}
.footer-contact a {
  text-decoration: underline;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .footer-nav {
    gap: 12px;
  }
}

/* =========================================================
   Cookie Consent Banner
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #294840;
  color: #fff;
  width: 100vw;
  z-index: 2500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 28px 20px 24px;
  box-shadow: 0 -2px 16px 0 rgba(41,72,64,0.10);
  font-size: 1rem;
  animation: cookieBannerSlideIn 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieBannerSlideIn {
  from { opacity: 0; transform: translateY(70px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__message {
  max-width: 600px;
  font-size: 1rem;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-btn {
  background: #EAD8C0;
  color: #294840;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border: none;
  padding: 10px 22px;
  border-radius: 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, transform 0.13s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #46725A;
  color: #fff;
  transform: scale(1.06);
}
.cookie-btn--secondary {
  background: #fff;
  color: #294840;
  border: 1px solid #EAD8C0;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 13px;
  }
  .cookie-banner__message {
    font-size: 0.94rem;
  }
  .cookie-banner__actions {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2600;
  background: rgba(41,72,64,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s cubic-bezier(.4,0,.2,1);
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal__content {
  background: #fff;
  color: #294840;
  border-radius: 18px;
  box-shadow: 0 4px 44px 0 rgba(41,72,64,0.25);
  max-width: 410px;
  width: 96vw;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookieModalSlideIn 0.45s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieModalSlideIn {
  from { opacity: 0; transform: scale(0.86) translateY(38px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal__content h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: #294840;
  margin-bottom: 12px;
}
.cookie-modal__category {
  margin-bottom: 16px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 9px;
}
.cookie-modal__actions {
  display: flex;
  gap: 15px;
  margin-top: 23px;
}
.cookie-modal__close {
  position: absolute;
  top: 11px;
  right: 10px;
  font-size: 1.7rem;
  background: #EAD8C0;
  color: #294840;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  text-align: center;
  transition: background 0.15s, color 0.13s;
  border: none;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #46725A;
  color: #fff;
}

/* Cookie Modal Switches */
.cookie-switch {
  appearance: none;
  display: inline-block;
  width: 36px;
  height: 20px;
  background: #ccc;
  border-radius: 10px;
  position: relative;
  transition: background 0.18s cubic-bezier(.4,0,.2,1);
  margin-left: 6px;
}
.cookie-switch:checked {
  background: #46725A;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.17s cubic-bezier(.4,0,.2,1);
}
.cookie-switch:checked:before {
  transform: translateX(16px);
}

/* =========================================================
   Animations & Effects
   ========================================================= */
.fade-in {
  animation: fadeIn 0.36s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Micro-interactions */
.card, .feature-card, .cta-btn, .cookie-btn {
  transition: box-shadow 0.2s cubic-bezier(.4,0,.2,1), transform 0.19s cubic-bezier(.4,0,.2,1), background 0.16s cubic-bezier(.4,0,.2,1), color 0.19s cubic-bezier(.4,0,.2,1);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .container { max-width: 97vw; }
  h1 { font-size: 2.08rem; }
}
@media (max-width: 760px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.1rem; }
  .container { padding: 0 7vw; }
}
@media (max-width: 600px) {
  .container { max-width: 100vw; padding: 0 3vw; }
}

/* Ensure minimum spacing between content cards/sections */
.section, .services, .about, .features, .testimonials, .cta, .contact-details, .legal, .thankyou {
  margin-bottom: 60px;
}

/* Remove extra margin for last section in main */
main > section:last-child {
  margin-bottom: 0;
}

/* Misc Spacing */
.section > *, .services > *, .about > *, .features > *, .testimonials > *, .cta > *, .contact-details > *, .legal > *, .thankyou > * {
  margin-bottom: 20px;
}

/* Hide elements visually only  */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
