/* --- CSS RESET / NORMALIZE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #FAFAFA;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #202626;
  background: #FAFAFA;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #02735E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #456B32;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
ul {
  list-style-type: disc;
}
li {
  margin-bottom: 0.5em;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  color: #02735E;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.25rem; line-height: 1.3; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 12px; }
p, blockquote, ul, ol, dl, dd {
  font-size: 1rem;
  color: #202626;
  margin-bottom: 16px;
}
blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: #02735E;
  margin: 0 0 12px 0;
  border-left: 4px solid #89C07B;
  padding-left: 18px;
  font-weight: bold;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: #02735E;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  padding: 14px 36px;
  margin-top: 18px;
  box-shadow: 0 2px 12px rgba(2, 115, 94, 0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  cursor: pointer;
  letter-spacing: 0.03em;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #456B32;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(2, 115, 94, 0.18);
}
.btn-link {
  color: #02735E;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  background: none;
  font-size: 1.06em;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-block;
  padding: 4px 0;
  transition: color 0.2s;
}
.btn-link:hover, .btn-link:focus {
  color: #456B32;
  text-decoration: underline;
}

/* ---- HEADER/NAVIGATION ---- */
header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(2, 115, 94, 0.06);
  position: relative;
  z-index: 80;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
  justify-content: space-between;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 12px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #02735E;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 2px 4px;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #89C07B;
  text-decoration: none;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  background: none;
  color: #02735E;
  font-size: 2rem;
  border: none;
  padding: 4px 10px;
  border-radius: 8px;
  display: none;
  cursor: pointer;
  line-height: 1;
  margin-left: 8px;
  transition: background 0.2s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #89C07B;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.87,-0.41,.19,1.44);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  box-shadow: 2px 0 32px rgba(2, 115, 94, 0.15);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #02735E;
  font-size: 2rem;
  border: none;
  margin: 24px 0 0 18px;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #456B32;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 48px 28px 0 36px;
}
.mobile-nav a {
  color: #202626;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  padding: 2px 0;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #89C07B;
  border-bottom: 2px solid #02735E;
}

@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: #02735E;
  color: #fff;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 10px 40px rgba(2, 115, 94, 0.12);
  margin-bottom: 60px;
  padding: 40px 0 55px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  text-align: center;
}
.hero h1, .hero h2, .hero h3 {
  color: #fff;
}
.hero p {
  color: #e2fff1;
  margin-bottom: 24px;
  font-size: 1.18rem;
  font-family: 'Open Sans', Arial;
  font-weight: 600;
}
.hero .btn-primary {
  margin-top: 12px;
}

/* --- CTA SECTION --- */
.cta {
  background: #456B32;
  border-radius: 40px;
  color: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 0 21px rgba(69, 107, 50, 0.07);
}
.cta h2, .cta h3 {
  color: #fff;
}

.cta p {
  color: #f4f9f6;
  font-weight: 600;
  margin-bottom: 22px;
}

.cta .btn-primary {
  background: #89C07B;
  color: #202626;
  font-weight: 800;
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: #FFF;
  color: #02735E;
}

/* --- SECTION SPACING & LAYOUT (MANDATORY CLASSES) --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  flex: 1 1 240px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(2, 115, 94, 0.09);
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .15s, box-shadow .15s;
}
.card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 36px rgba(2, 115, 94, 0.18);
  z-index: 6;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FAFAFA;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(2, 115, 94, 0.09);
  margin-bottom: 28px;
  flex-direction: column;
}
.testimonial-card blockquote {
  color: #02735E;
  font-weight: 700;
  font-size: 1.12rem;
  border-left: 4px solid #456B32;
  padding-left: 18px;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #202626;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FEATURES & SERVICES CARDS --- */
.features .feature-grid,
.services-preview .service-cards,
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
  margin-bottom: 16px;
}
.features .feature-grid li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(2, 115, 94, 0.08);
  flex: 1 1 245px;
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  min-width: 210px;
  transition: box-shadow 0.16s, transform 0.12s;
}
.features .feature-grid li img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.features .feature-grid li h3 {
  color: #456B32;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.service-cards {
  gap: 24px;
  margin-bottom: 12px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 17px rgba(2, 115, 94, 0.10);
  padding: 28px 24px 20px 24px;
  flex: 1 1 265px;
  margin-bottom: 20px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.16s, transform 0.12s;
}
.service-card h3 {
  color: #02735E;
  font-size: 1.15rem;
}
.service-card p {
  color: #202626;
  font-size: 1rem;
}
.services .service-list {
  flex-direction: column;
  gap: 24px;
}
.services .service-list li {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(2, 115, 94, 0.07);
  padding: 30px 20px 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
  transition: box-shadow 0.16s, transform 0.12s;
}
.services .service-list li:hover {
  box-shadow: 0 9px 18px rgba(2, 115, 94, 0.16);
  transform: scale(1.025);
  z-index: 5;
}
.price {
  color: #456B32;
  font-weight: 800;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  font-size: 1.08em;
}
.next-date {
  color: #02735E;
  font-size: 0.97em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 6px;
}

/* --- TEXT/IMAGE SECTION --- */
.text-section {
  max-width: 720px;
}

/* --- LEGAL / POLICY SECTIONS --- */
.legal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(2, 115, 94, 0.07);
  margin-bottom: 60px;
  padding: 40px 24px;
}
.legal h1, .legal h2, .legal h3 {
  color: #02735E;
}
.legal ul li {
  margin-bottom: 7px;
}

/* --- FAQ --- */
dt {
  font-weight: 700;
  color: #02735E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 3px;
  margin-top: 16px;
}
dd {
  margin-left: 0;
  margin-bottom: 16px;
}

/* --- FOOTER --- */
footer {
  background: #FFFFFF;
  border-top: 4px solid #02735E;
  margin-top: 70px;
  padding-top: 32px;
  padding-bottom: 32px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer a, .footer-contact {
  color: #02735E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1em;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.footer-contact {
  font-size: 0.98em;
  color: #202626;
}
footer img {
  height: 36px;
  margin-bottom: 12px;
}

/* --- THANK YOU SECTION --- */
.thank-you {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 18px rgba(2, 115, 94, 0.07);
  margin: 60px 0;
  padding: 45px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.thank-you h1 {
  color: #02735E;
}
.thank-you a.btn-primary {
  margin-top: 18px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF;
  color: #02735E;
  box-shadow: 0 -2px 24px rgba(2, 115, 94, 0.12);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  align-items: flex-start;
  z-index: 5000;
  animation: cookieSlideIn 0.7s cubic-bezier(0.08, 0.91, 0.45, 1.16);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #202626;
  margin: 0 0 6px 0;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 26px;
  cursor: pointer;
  border: none;
  font-size: 1em;
  transition: background 0.18s, color 0.18s, box-shadow .12s;
  margin-right: 8px;
}
.cookie-banner .btn-accept {
  background: #02735E;
  color: #FFF;
  box-shadow: 0 2px 8px rgba(2, 115, 94, 0.09);
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: #456B32;
}
.cookie-banner .btn-decline {
  background: #fff;
  color: #02735E;
  border: 2px solid #02735E;
}
.cookie-banner .btn-decline:hover, .cookie-banner .btn-decline:focus {
  color: #fff;
  background: #456B32;
  border-color: #456B32;
}
.cookie-banner .btn-settings {
  background: #89C07B;
  color: #02735E;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #fff;
  color: #456B32;
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 5001;
  background: rgba(2, 115, 94, 0.28);
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 7px 36px rgba(2, 115, 94, 0.22);
  padding: 32px 24px;
  min-width: 310px;
  max-width: 420px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: popIn .27s cubic-bezier(0.08, 0.91, 0.37, 1.05);
  position: relative;
}
@keyframes popIn {
  from { transform: scale(0.9); opacity:0; }
  to { transform: scale(1); opacity:1; }
}
.cookie-modal h3 {
  color: #456B32;
  margin-bottom: 10px;
  font-size: 1.19em;
}
.cookie-modal-choices {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
}
.cookie-toggle-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-toggle-row strong {
  color: #02735E;
  font-size: 1.05em;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 6px;
}
.cookie-modal .btn-primary {
  margin-top: 0;
  font-size: 0.98em;
  padding: 11px 24px;
}
.cookie-modal .btn-secondary {
  background: #fff;
  color: #89C07B;
  border: 2px solid #89C07B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s, border 0.18s;
  padding: 11px 20px;
}
.cookie-modal .btn-secondary:hover { background: #89C07B; color: #fff; border-color: #02735E; }
.cookie-modal-close {
  background: none;
  border: none;
  color: #02735E;
  font-size: 2rem;
  position: absolute;
  top: 22px; right: 22px;
  cursor: pointer;
  padding: 0;
  z-index: 1;
}
.cookie-toggle-switch {
  width: 46px;
  height: 26px;
  background: #c7f3e3;
  border-radius: 14px;
  display: inline-block;
  position: relative;
  transition: background 0.18s;
  vertical-align: middle;
}
.cookie-toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-switch .slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 20px; height: 20px;
  background: #02735E;
  border-radius: 50%;
  transition: left 0.15s, background 0.15s;
}
.cookie-toggle-switch.active {
  background: #89C07B;
}
.cookie-toggle-switch.active .slider {
  left: 23px;
  background: #456B32;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 980px) {
  .container {
    max-width: 96vw;
  }
  .footer-contact {
    margin-top: 18px;
  }
  .features .feature-grid,
  .service-cards {
    flex-direction: column;
    gap: 18px;
  }
  .services .service-list {
    gap: 18px;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero, .cta, .section, .legal, .thank-you {
    padding: 24px 10px;
    margin-bottom: 36px;
    border-radius: 18px;
  }
  .feature-grid, .service-cards, .services .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 14px;
    padding: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .content-wrapper {
    padding: 0;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 500px) {
  html { font-size: 15px; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1rem; }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* --- ACCESSIBILITY / FOCUS --- */
a, button {
  outline: none;
  transition: box-shadow 0.2s, outline 0.14s;
}
a:focus, button:focus, .btn-primary:focus, .btn-link:focus {
  outline: 2px solid #89C07B;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(137,192,123,0.25);
}

/* --- MISC / ADDITIONAL STYLES --- */
::selection {
  background: #89C07B55;
}
::-webkit-scrollbar {
  width: 8px;
  background: #e9e9e9;
}
::-webkit-scrollbar-thumb {
  background: #02735E;
  border-radius: 4px;
}

/* Hide scroll on mobile when mobile menu or cookie modal is open (add class body.no-scroll in JS) */
body.no-scroll {
  overflow: hidden;
  touch-action: none;
  position: relative;
}

/* -- GEOMETRIC SHAPES / ACCENTS -- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 210px; height: 210px;
  background: #89C07B;
  opacity: 0.09;
  border-radius: 45% 42% 54% 60%;
  z-index: 0;
}
.hero .content-wrapper {
  position: relative;
  z-index: 1;
}

/* --- END OF CSS --- */
