/* =============================================================
   Verdant Ledge — Geometric Structured Style (Mobile-first)
   =============================================================*/

/* 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,
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F2EDED;
  color: #25403B;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #25403B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #69B67E;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #25403B;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.14;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.18;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, dd, dt {
  font-size: 1rem;
  line-height: 1.7;
  color: #25403B;
  margin-bottom: 16px;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}

/* LAYOUT CONTAINERS & GRIDS */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 22px 0 rgb(37 64 59 / 7%);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 14px 0 rgba(105,182,126,0.11);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 22px;
  flex: 1 1 320px;
  min-width: 260px;
  transition: box-shadow 0.25s, transform 0.19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 30px 0 rgba(37,64,59,0.14);
  transform: translateY(-5px) scale(1.01);
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F2EDED;
  padding: 20px 28px;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 13px 0 rgba(37,64,59,0.07);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 220px;
  background: #fff;
  border: 2.5px solid #69B67E;
  border-radius: 14px;
  padding: 20px 14px;
  min-width: 180px;
  transition: box-shadow 0.19s, border-color 0.18s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 4px 18px 0 rgba(105,182,126,0.13);
  border-color: #25403B;
}

/* SPECIAL LAYOUTS FOR FEATURE GRIDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 26px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.advice-categories-list,
.comparison-benefits-list,
.quick-step-process,
.dos-and-donts-list,
.contact-benefits-list,
.key-tips-list,
.plan-features-list,
.feature-list,
.footer-main-nav,
.footer-utility-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.claims-process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: step;
  margin-bottom: 24px;
}
.claims-process-steps li {
  position: relative;
  padding-left: 40px;
  font-weight: 500;
}
.claims-process-steps li::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #69B67E;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  position: absolute;
  left: 0;
  top: 0;
}

.faq-accordion {
  margin: 16px 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(37,64,59,0.10);
}
.faq-accordion dt {
  cursor: pointer;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 18px;
  border-bottom: 1px solid #E2E4E3;
  position: relative;
  transition: background 0.13s;
}
.faq-accordion dt:hover,
.faq-accordion dt:focus {
  background: #f1f6f4;
  color: #69B67E;
  outline: none;
}
.faq-accordion dd {
  padding: 10px 18px 13px 32px;
  background: #F2EDED;
}
.faq-accordion dd:not(:last-child) {
  border-bottom: 1px solid #E2E4E3;
}

.sample-report-preview {
  border-left: 4px solid #69B67E;
  padding: 14px 0 14px 26px;
  margin-top: 12px;
  background: #fbfdfc;
  border-radius: 8px;
}

.pricing-details {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  color: #25403B;
  font-weight: 700;
  margin-bottom: 16px;
}

.text-section, .service-overview-snippet {
  margin-bottom: 22px;
}
.text-section > * {
  margin-bottom: 12px;
}

.checklist-download {
  margin: 18px 0 20px 0;
}
.checklist-download a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #69B67E;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background 0.2s;
}
.checklist-download a:hover {
  background: #25403B;
  color: #fff;
}

.resolution-stats {
  margin-top: 18px;
  color: #25403B;
  background: #E6F4EC;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* BUTTONS */
.cta-btn, .cta-btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  background: #25403B;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 15px 0 rgba(37,64,59,0.08);
  cursor: pointer;
  margin-bottom: 10px;
  transition: background 0.22s, color 0.22s, box-shadow 0.18s, transform 0.13s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #69B67E;
  color: #25403B;
  box-shadow: 0 6px 18px 0 rgba(105,182,126,0.13);
  outline: none;
  transform: translateY(-3px) scale(1.03);
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 4px solid #69B67E;
  box-shadow: 0 1px 8px 0 rgba(37,64,59,0.07);
  position: sticky;
  top: 0;
  z-index: 1010;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  gap: 18px;
}
header img {
  height: 44px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  margin-right: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #25403B;
  padding: 8px 0 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-bottom 0.13s;
}
.main-nav a:hover, .main-nav a.active {
  color: #69B67E;
  border-bottom: 2px solid #69B67E;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #25403B;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.11s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(105,182,126,0.13);
  outline: none;
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #25403B;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1500;
  transform: translateX(-110vw);
  transition: transform 0.39s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: 0 0 0 999px rgba(37, 64, 59, 0.19);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  margin: 22px 28px 0 0;
  cursor: pointer;
  z-index: 22;
  transition: color 0.19s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #69B67E;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 38px 34px;
  gap: 22px;
  margin-top: 26px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.016em;
  padding: 16px 0 11px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.11s, border-bottom 0.13s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: #69B67E;
  border-bottom: 2px solid #69B67E;
}

/* TESTIMONIALS */
.testimonial-card {
  background: #F2EDED;
  color: #25403B !important;
  border-left: 5px solid #69B67E;
  margin-bottom: 20px;
  max-width: 650px;
  box-sizing: border-box;
}
.testimonial-rating {
  font-size: 1.15rem;
  color: #69B67E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.09em;
  margin-bottom: 3px;
}
.testimonial-author {
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: italic;
  color: #25403B;
  margin-top: 4px;
}

/* FOOTER */
footer {
  background: #25403B;
  color: #fff;
  padding: 48px 0 20px 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  justify-content: flex-start;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 18px;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  min-width: 210px;
  color: #fff;
}
.footer-contact-info a { color: #69B67E; }
.footer-main-nav, .footer-utility-nav {
  flex-direction: column;
  gap: 10px;
}
.footer-main-nav a, .footer-utility-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-main-nav a:hover,
.footer-utility-nav a:hover {
  color: #69B67E;
}
.footer-social {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}
.footer-social a img {
  height: 27px;
  width: 27px;
  filter: invert(65%) sepia(62%) saturate(328%) hue-rotate(93deg) brightness(90%) contrast(97%);
  transition: filter 0.14s;
}
.footer-social a:hover img {
  filter: invert(32%) sepia(33%) saturate(842%) hue-rotate(93deg) brightness(102%) contrast(105%);
}

/* COOKIES CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 3000;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #25403B;
  color: #fff;
  padding: 14px 32px 18px 20px;
  font-size: 1rem;
  box-shadow: 0 -2px 28px 0 rgba(37,64,59,0.12);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  gap: 20px;
  /* fade-in animation */
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
  transition: opacity 0.38s, transform 0.38s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0%);
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn, .cookie-btn:visited {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 9px;
  padding: 9px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
}
.cookie-btn.accept {
  background: #69B67E;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: #25403B;
}
.cookie-btn.reject {
  background: #F2EDED;
  color: #25403B;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #69B67E;
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #69B67E;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #69B67E;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 4010;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(37,64,59,0.57);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.36s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  background: #fff;
  color: #25403B;
  border-radius: 16px;
  box-shadow: 0 6px 38px 0 rgba(37,64,59,0.20);
  min-width: 320px;
  max-width: 98vw;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: cookieDialogIn 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
@keyframes cookieDialogIn {
  0% { transform: translateY(64px) scale(0.95); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 29px;
  right: 38px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #25403B;
  cursor: pointer;
  z-index: 2;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.38rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.cookie-categories-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
  width: 100%;
}
.cookie-category-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e2e4e3;
}
.cookie-category-label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #e5e5e5;
  border-radius: 14px;
  position: relative;
  transition: background 0.18s;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.cookie-toggle input {
  opacity: 0;
  position: absolute;
}
.cookie-toggle-slider {
  display: inline-block;
  width: 19px;
  height: 19px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px 0 rgba(37,64,59,0.09);
  transition: transform 0.19s, background 0.14s;
  position: absolute;
  left: 2px;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #69B67E;
  transform: translateX(16px);
}
.cookie-toggle[aria-disabled="true"] {
  opacity: 0.37;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 16px;
}

/* Miscellaneous Styling */
::-webkit-input-placeholder { color: #7D928F; }
::-moz-placeholder { color: #7D928F; }
:-ms-input-placeholder { color: #7D928F; }
::placeholder { color: #7D928F; }

/* ANGULAR GEOMETRIC FLAIR */
.section, .feature-item, .card, .testimonial-card, .faq-accordion, .cookie-modal-dialog {
  border-radius: 0 18px 18px 18px/0 14px 14px 14px;
}
.cta-btn, .cookie-btn {
  border-radius: 7px 15px 10px 11px/7px 8px 15px 12px;
}

/* VISUAL ELEMENTS & EFFECTS */
.card, .feature-item, .testimonial-card, .faq-accordion { box-shadow: 0 2px 12px 0 rgba(37,64,59,0.09); }
.card:hover, .feature-item:hover { box-shadow: 0 6px 22px 0 rgba(37,64,59,0.13); }

/* SPACING & WHITE SPACE */
main {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 60vh;
  margin-bottom: 60px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =========================
   RESPONSIVE ADJUSTMENTS
   ========================= */
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .footer-main-nav, .footer-utility-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
  footer .container {
    gap: 22px;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
@media (max-width: 840px) {
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .footer-main-nav, .footer-utility-nav {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  header .container { padding: 10px 8px; }
  .container {
    padding: 0 9px;
  }
  .section, section {
    padding: 30px 8px;
    margin-bottom: 42px;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .content-wrapper {
    gap: 19px;
  }
  .feature-item {
    min-width: 0;
    padding: 14px 9px;
    font-size: 0.98rem;
  }
  .faq-accordion dt, .faq-accordion dd {
    font-size: 1rem;
    padding-left: 0;
  }
  .footer-social {
    margin-top: 8px;
  }
  .footer-logo img,
  header img { height: 35px; }
  .testimonial-card {
    padding: 16px 9px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section,
  .feature-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.36rem; }
  h2 { font-size: 1.14rem; }
  .footer-logo img,
  header img { height: 29px; }
  .section, section {
    padding: 18px 1px;
    margin-bottom: 27px;
  }
  footer {
    padding: 33px 0 10px 0;
  }
  .cookie-banner {
    padding: 10px 8px 13px 10px;
    font-size: 0.97rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
}

/* END OF THEME */
