/* --- 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;
  font-size: 16px;
  background: #F4F4F9;
  height: 100%;
}

body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #282826;
  background: #F4F4F9;
  line-height: 1.7;
}

img, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

a {
  color: #215D44;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #FFC857;
  text-decoration: underline;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #215D44;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.25rem; margin-top: 0; margin-bottom: 24px; }
h2 { font-size: 1.5rem; margin-bottom: 20px; }
h3 { font-size: 1.17rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1rem; font-weight: 600; }

p {
  font-size: 1rem;
  margin-bottom: 16px;
}

strong { font-weight: 700; }

ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
  font-size: 1rem;
}

li {
  margin-bottom: 8px;
}

.container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(33,93,68,0.06);
}

/* --- Layout for content grids and flexboxes --- */
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(33,93,68,0.04);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.25s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px rgba(255,200,87,0.20), 0 2px 12px rgba(33,93,68,0.08);
}

.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;
  padding: 24px 28px;
  background: #FFF8EC;
  border-radius: 20px;
  box-shadow: 0 2px 8px 0 rgba(33,93,68,0.05);
  color: #282826;
  margin-bottom: 20px;
  max-width: 430px;
}

.testimonial-meta {
  font-size: 1rem;
  color: #215D44;
  font-weight: 600;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature list Icons (Home) */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
}
.feature-list li {
  flex: 1 1 220px;
  min-width: 220px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(255,200,87,0.08);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.24s, transform 0.13s;
}
.feature-list li:hover {
  box-shadow: 0 6px 18px 0 rgba(33,93,68,0.10);
  transform: translateY(-4px) scale(1.02);
}
.feature-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}

.trust-signals {
  background: #FFF8EC;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(255,200,87,0.07);
  padding: 18px 14px;
  font-size: 1.05rem;
  margin-top: 18px;
}

/* --- Buttons --- */
.btn-primary,
.main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #FFC857;
  color: #215D44;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.27s;
  box-shadow: 0 2px 8px rgba(33,93,68,0.06);
  text-decoration: none;
  margin-top: 8px;
}
.btn-primary:hover, .main-cta:hover, .btn-primary:focus, .main-cta:focus {
  background: #215D44;
  color: #FFC857;
  box-shadow: 0 4px 20px 0 rgba(33,93,68,0.11);
  outline: none;
}

/* --- Header / Navbar --- */
header {
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(33,93,68,0.07);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
.logo img {
  height: 48px;
  width: auto;
  border-radius: 12px;
  background: #FDF2DF;
  padding: 6px;
  box-shadow: 0 2px 8px 0 rgba(255,200,87,0.11);
}
nav.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #215D44;
  padding: 6px 14px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background 0.18s, color 0.15s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: #FFC857;
  color: #215D44;
  outline: none;
}

.main-cta {
  margin-left: 18px;
}

.mobile-menu-toggle {
  display: none;
  background: #FFC857;
  color: #215D44;
  font-size: 1.7rem;
  border: none;
  border-radius: 50%;
  padding: 8px 16px;
  margin-left: 14px;
  box-shadow: 0 1px 6px rgba(33,93,68,0.10);
  cursor: pointer;
  transition: background 0.16s;
  z-index: 1002;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #FFC857;
}

/* --- Mobile Nav Overlay --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,93,68,0.97);
  z-index: 1020;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.34s cubic-bezier(.38,.8,.41,1), opacity 0.26s;
  transform: translateX(100%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #FFC857;
  color: #215D44;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  margin: 22px 24px 8px 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 rgba(255,200,87,0.07);
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #215D44;
  color: #FFC857;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  margin-left: 36px;
  margin-top: 16px;
}
.mobile-nav a {
  color: #FFC857;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  padding: 8px 0;
  border-radius: 13px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFC857;
  color: #215D44;
  padding-left: 10px;
}

/* --- Hero Section --- */
.hero-section {
  background: linear-gradient(90deg, #FFC857 78%, #FDF2DF 100%);
  border-bottom: 3px solid #F4F4F9;
  padding: 60px 0 40px 0;
  margin-bottom: 54px;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero-section h1 {
  color: #215D44;
  font-size: 2.45rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero-section p {
  color: #694F0A;
  font-size: 1.15rem;
  margin-bottom: 23px;
}

/* --- FAQ List --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1rem;
}
.faq-list dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #215D44;
  margin-bottom: 0.5em;
  font-size: 1.08rem;
  background: #FFF8EC;
  padding: 11px 16px 7px 19px;
  border-radius: 13px 13px 0 0;
}
.faq-list dd {
  background: #fff;
  padding: 11px 20px 15px 24px;
  border-radius: 0 0 13px 13px;
  margin-left: 0;
  box-shadow: 0 2px 8px 0 rgba(255,200,87,0.07);
}

/* --- Table Styling (Pricing) --- */
.price-table {
  width: 100%;
  border-spacing: 0;
  margin-bottom: 30px;
  border-radius: 18px;
  overflow: hidden;
  background: #FFF;
  box-shadow: 0 2px 8px 0 rgba(33,93,68,0.04);
  font-size: 1rem;
}
.price-table th,
.price-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #F4F4F9;
}
.price-table th {
  background: #FFF5CF;
  color: #215D44;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.price-table tr:last-child > td {
  border-bottom: none;
}

/* --- Text Section --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section ul {
  margin-left: 20px;
}
.contact-details {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
}

/* --- Map Placeholder --- */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #FFF8EC;
  border-radius: 13px;
  padding: 15px 20px;
  margin-top: 22px;
  font-size: 1.1rem;
}
.map-placeholder img {
  width: 38px;height: 38px;
}

/* --- Footer --- */
footer {
  background: #fff;
  border-top: 3px solid #F4F4F9;
  padding: 44px 0 26px 0;
  font-size: 0.97rem;
  color: #215D44;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-branding {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  color: #215D44;
  margin-top: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  font-weight: 600;
  color: #215D44;
  transition: color 0.13s;
  border-radius: 6px;
  padding: 2px 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFC857;
  background: #215D44;
  outline: none;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.98rem;
}
.footer-contact img {
  width: 18px; height:18px; margin-right: 8px; vertical-align: middle;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #215D44;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  justify-content: center;
  padding: 22px 12px 20px 12px;
  box-shadow: 0 -4px 30px rgba(33,93,68,0.18);
  font-size: 1.07rem;
  animation: slideUpBanner 0.6s cubic-bezier(.55,.39,.53,1.07);
}
@keyframes slideUpBanner {
  from {opacity:0; transform:translateY(60px);}
  to {opacity:1; transform:translateY(0);}
}

.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-left: 20px;
}
.cookie-banner button,
.cookie-banner .cookie-settings-btn {
  background: #FFC857;
  color: #215D44;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 22px;
  padding: 8px 23px;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  box-shadow: 0 2px 8px rgba(255,200,87,0.09);
}
.cookie-banner button:hover,
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner button:focus {
  background: #fff;
  color: #215D44;
  outline:none;
}
.cookie-banner .cookie-reject {
  background: #F4F4F9;
  color: #215D44;
}
.cookie-banner .cookie-reject:hover {
  background: #FFC857;
  color: #215D44;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  z-index: 10000;
  background: rgba(33,93,68,0.64);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.13s;
}
@keyframes fadeInModal {
  from { opacity:0; } to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  color: #215D44;
  border-radius: 19px;
  width: 95vw;
  max-width: 410px;
  box-shadow: 0 8px 32px rgba(33,93,68,0.19);
  padding: 28px 26px 18px 26px;
  position: relative;
}
.cookie-modal h2 {
  margin-bottom: 6px;
  color: #215D44;
  font-size: 1.25rem;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: #FFC857;
  color: #215D44;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #215D44; color: #FFC857;
}
.cookie-modal .cookie-category {
  font-weight: 700;
  margin-top: 14px;
  color: #215D44;
}
.cookie-modal .cookie-toggle {
  margin-left: 10px;
  vertical-align: middle;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal label {
  font-weight: 500;
}

/* --- Cards and Testimonial Slider --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

/* --- Utility & Misc --- */
::-webkit-input-placeholder { color: #999; }
::-moz-placeholder { color: #999; }
:-ms-input-placeholder { color: #999; }
::placeholder { color: #999; }

section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}

/* --- Responsive Styles --- */
@media (max-width: 1080px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-contact, .footer-nav {
    font-size: 0.97rem;
  }
}
@media (max-width: 900px) {
  .feature-list {
    gap: 16px;
  }
  .footer-branding { margin-top: 8px; }
}
@media (max-width: 790px) {
  .section, section {
    padding: 28px 3vw !important;
    margin-bottom: 38px;
  }
  .card {
    padding: 18px 10px;
  }
  .footer-contact {font-size: 0.96rem;}
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: flex-start;
    gap: 11px;
  }
  nav.main-nav {
    display: none !important;
  }
  .main-cta {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .content-grid, .card-container, .testimonial-slider, .feature-list {
    flex-direction: column;
    gap: 18px !important;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 18px 12px;
  }
  .price-table th, .price-table td {
    font-size: 0.98rem;
    padding: 10px 8px;
  }
  .footer-contact {
    margin-top: 16px;
  }
  .footer-branding {
    margin-bottom: 8px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    font-size: 0.97rem;
    padding: 13px 10px 14px 10px;
  }
  .cookie-banner .cookie-buttons { margin-left: 0; }
}
@media (max-width: 600px) {
  .footer-contact, .footer-nav {
    font-size: 0.94rem;
  }
  .footer-branding {font-size: 0.96rem;}
  .logo img { height: 36px; }
}
@media (max-width: 450px) {
  h1, .hero-section h1 { font-size: 1.25rem; }
  h2 { font-size: 1.1rem; }
  .btn-primary, .main-cta { font-size: 0.97rem; padding: 11px 15px; }
  .price-table th, .price-table td { padding: 6px 2px; }
}

/* --- Hide scroll when modal or mobile menu open --- */
body.menu-open, body.modal-open {
  overflow: hidden;
}

/* --- Smooth transitions --- */
*, *::before, *::after { box-sizing: inherit; transition: background 0.20s, color 0.18s, border 0.19s; }

/* --- Accessibility --- */
:focus {
  outline: 2px solid #215D44;
  outline-offset: 2px;
}

/*--- Thank you page ---*/
.text-section a.btn-primary {
  margin-top: 12px;
}
