/* 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;
}
footer p {
  color: white;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #22476B;
  background: linear-gradient(135deg, #F4E7D2 60%, #A4C876 100%); /* minimal, contemporary gradient */
  min-height: 100vh;
  letter-spacing: 0.01em;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Brand Font Loading */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #22476B;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5 {
  font-size: 1.1rem;
}

p, ul, ol, blockquote {
  margin-bottom: 18px;
  color: #22476B;
}
ul, ol {
  padding-left: 22px;
  font-size: 1rem;
}
strong {
  font-weight: 700;
  color: #22476B;
}
a {
  color: #22476B;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #A4C876;
  outline: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 32px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(120deg, #A4C876 15%, #F4E7D2 85%);
  border-radius: 0 0 36px 36px;
  padding-top: 60px;
  padding-bottom: 60px;
  box-shadow: 0 8px 24px 0 rgba(34,71,107,0.06);
  margin-bottom: 40px;
}
.hero-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero-section h1 {
  color: #22476B;
  font-size: 2.5rem;
  font-weight: 900;
}
.hero-section p {
  color: #22476B;
  font-size: 1.18rem;
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(34,71,107,0.09);
  padding: 28px 20px;
  flex: 1 1 300px;
  min-width: 300px;
  max-width: 350px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(34,71,107,0.14);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}
.card img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}

.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;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(34,71,107,0.08);
  border-radius: 16px;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #22476B;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: #22476B;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(164,200,118,0.16);
  transform: scale(1.01);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(34,71,107,0.08);
  padding: 20px 18px;
  flex: 1 1 250px;
  min-width: 215px;
  max-width: 300px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  width: 42px;
  height: 42px;
}
.feature-item h3 {
  font-size: 1.18rem;
  margin-bottom: 5px;
}
.feature-item:hover {
  box-shadow: 0 6px 28px rgba(164,200,118,0.12);
  transform: translateY(-2px) scale(1.017);
}

/* BUTTONS / CTA */
.cta-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 32px;
  background: linear-gradient(90deg, #A4C876 60%, #22476B 100%);
  color: #fff !important;
  border: none;
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(34,71,107,0.10);
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
  cursor: pointer;
  text-align: center;
  margin-top: 12px;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #22476B 60%, #A4C876 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 18px 0 rgba(34,71,107,0.17);
  outline: none;
}

button, .button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 24px;
  border: none;
  background: #A4C876;
  color: #22476B;
  font-weight: 600;
  transition: background 0.16s, color 0.16s, transform 0.15s;
  cursor: pointer;
}
button:hover, .button:hover, input[type="button"]:hover, input[type="submit"]:hover {
  background: #22476B;
  color: #fff;
  transform: translateY(-2px) scale(1.012);
}

/* NAVIGATION */
.desktop-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
}
.desktop-navigation a {
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
  font-size: 1rem;
  color: #22476B;
}
.desktop-navigation a.cta-primary {
  margin-left: 20px;
  padding: 10px 28px;
  font-size: 1.05rem;
}
.desktop-navigation a:hover, .desktop-navigation a:focus {
  background: #A4C876;
  color: #fff;
}
.desktop-navigation a.cta-primary:hover, .desktop-navigation a.cta-primary:focus {
  background: #22476B;
  color: #fff;
}
.desktop-navigation img {
  max-height: 38px;
  margin-right: 18px;
}

.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #22476B;
  font-size: 2rem;
  border-radius: 50%;
  border: none;
  width: 47px;
  height: 47px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  box-shadow: 0 2px 12px 0 rgba(34,71,107,0.07);
  transition: box-shadow 0.15s, background 0.16s;
  position: relative;
  z-index: 150;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #F4E7D2;
  outline: none;
}

@media (max-width: 1020px) {
  .desktop-navigation {
    gap: 16px;
  }
  .desktop-navigation a.cta-primary {
    margin-left: 0;
  }
}
@media (max-width: 900px) {
  .desktop-navigation {
    gap: 12px;
    font-size: 0.98rem;
  }
}
@media (max-width: 830px) {
  .desktop-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,71,107,0.81);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.86,.03,.27,1.01);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 40px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #22476B;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 20px;
  right: 22px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(34,71,107,0.10);
  z-index: 2200;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
  margin-top: 60px;
  padding: 0 26px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.18rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: color 0.16s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: #A4C876;
  outline: none;
}

/* Footer */
footer {
  background: #22476B;
  color: #fff;
  margin-top: 60px;
  box-shadow: 0 -4px 16px 0 rgba(34,71,107,0.08);
  padding-top: 24px;
}
footer .container {
  padding-top: 0;
  padding-bottom: 0;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img {
  max-width: 46px;
  margin-bottom: 2px;
}
.footer-brand p {
  color: #fff;
  font-size: 1.05rem;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav a {
  color: #A4C876;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  padding: 3px 0;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  outline: none;
}
.footer-contact {
  color: #fff;
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}
.footer-bottom {
  width: 100%;
  text-align: center;
  color: #fff;
  background: #22476B;
  font-size: 0.98rem;
  padding: 14px 0 8px 0;
  opacity: .87;
}

/* TABLES (PRICES) */
.pricing-table {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(34,71,107,0.08);
  border-collapse: collapse;
  margin: 28px 0 24px 0;
  font-size: 1rem;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 15px 14px;
  font-weight: 600;
}
.pricing-table th {
  background: #A4C876;
  color: #fff;
  font-size: 1.1rem;
  border-bottom: 1px solid #F4E7D2;
}
.pricing-table tr:not(:first-child){
  border-bottom: 1px solid #F4E7D2;
}
.pricing-table tr:last-child {
  border-bottom: none;
}
.pricing-table td {
  font-weight: 400;
  color: #22476B;
}

/* OTHER LISTS & COMPONENTS */
.service-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(34,71,107,0.06);
  padding: 20px 16px;
}
.benefit-list {
  list-style-type: disc;
  padding-left: 24px;
  margin-top: 9px;
  margin-bottom: 18px;
  color: #22476B;
}
.benefit-list li {
  margin-bottom: 8px;
  font-size: 1rem;
}
.package-options, .service-inclusions {
  background: #F4E7D2;
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px 0 rgba(164,200,118,0.05)
}
.package-options ul, .service-inclusions ul {
  margin: 0;
  padding-left: 16px;
}

.appointment-steps {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.appointment-steps li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.appointment-steps li:before {
  counter-increment: step;
  content: counter(step) ".";
  position: absolute;
  left: 0;
  top: 0;
  background: #A4C876;
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq-preview {
  list-style: none;
  padding-left: 0;
}
.faq-preview li {
  margin-bottom: 13px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(34,71,107,0.03);
  padding: 12px 14px;
  font-size: 1rem;
}

.location-details {
  background: #fff;
  border-radius: 10px;
  margin: 16px 0;
  padding: 14px 20px;
  box-shadow: 0 2px 10px 0 rgba(34,71,107,0.07);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 3000;
  background: #22476B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  box-shadow: 0 -2px 16px rgba(34,71,107,0.17);
  font-size: 1rem;
  gap: 30px;
  transition: transform 0.36s cubic-bezier(.85,.01,.62,1.03), opacity 0.15s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  margin-left: 20px;
}
.cookie-banner button {
  font-size: 1rem;
  border-radius: 18px;
  background: #A4C876;
  color: #22476B;
  border: none;
  font-weight: 600;
  padding: 8px 18px;
  transition: background .18s,color .15s;
  cursor: pointer;
}
.cookie-banner button:hover,.cookie-banner button:focus {
  background: #fff;
  color: #22476B;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3500;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34,71,107,0.41);
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.19s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #22476B;
  padding: 36px 28px;
  border-radius: 20px;
  min-width: 330px; max-width: 96vw;
  box-shadow: 0 8px 34px 0 rgba(34,71,107,0.25);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.24s cubic-bezier(.24,1.06,.44,.85);
  transform: translateY(12px);
}
.cookie-modal h3 {
  color: #22476B;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.cookie-settings {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-setting {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-setting label {
  font-weight: 600;
  color: #22476B;
}
.cookie-modal .btn-row {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}

/* Custom Toggle Switch */
.cookie-toggle {
  width: 42px;
  height: 24px;
  background: #F4E7D2;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background .16s;
  display: inline-block;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
}
.cookie-toggle span {
  display: block;
  width: 18px;
  height: 18px;
  background: #A4C876;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 3px;
  transition: left .19s;
}
.cookie-toggle input:checked + span {
  left: 21px;
  background: #22476B;
}
.cookie-setting.essential {
  opacity: 0.7;
}

/* UTILITIES */
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.text-center { text-align: center; }

/* RESPONSIVENESS */
@media (max-width: 1050px) {
  .feature-grid {
    gap: 18px;
  }
  .content-wrapper {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.58rem; }
}

@media (max-width: 830px) {
  .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .features, .content-grid {
    gap: 16px;
  }
  .footer-brand, .footer-contact, .footer-nav {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 690px) {
  .container {
    padding: 0 9px;
  }
  .section, section {
    padding: 30px 5px;
  }
  .hero-section {
    padding: 32px 2px 38px 2px;
    border-radius: 0 0 18px 18px;
  }
  .feature-item { min-width: 95vw; max-width: 100vw; }
  .card, .feature-item {
    min-width: 230px;
    padding: 18px 8px;
  }
  .footer-brand img { max-width: 36px; }
}
@media (max-width: 550px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch !important;
  }
  .testimonial-card {
    padding: 11px 9px;
  }
  .footer-nav, .footer-brand, .footer-contact {
    align-items: flex-start !important;
    text-align: left;
  }
  .cookie-modal {
    min-width: 98vw !important;
    padding: 20px 5px;
  }
}
@media (max-width: 480px) {
  h1 {font-size:1.45rem;}
  h2 {font-size:1.19rem;}
  .cta-primary {padding:10px 14px;font-size:1rem;}
  .section, section {padding:22px 1px;}
  .testimonial-card {font-size:.95rem;}
  .pricing-table th, .pricing-table td {padding:8px 5px;font-size:.95rem;}
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-nav, .footer-brand, .footer-contact {
    align-items: flex-start;
  }
}

/* MISC */
::-webkit-input-placeholder { color: #aaa; }
input, textarea {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #A4C876;
  font-family: inherit;
  font-size: 1rem;
  transition: border 0.16s, box-shadow 0.16s;
}
input:focus, textarea:focus {
  border-color: #22476B;
  outline: none;
  box-shadow: 0 1px 8px rgba(34,71,107,0.12);
}

/* Hide scroll on mobile menu overlay */
body.mobile-menu-open {
  overflow: hidden;
}

/* Utility for spacing cards, testimonial, sections */
.card:not(:last-child), .feature-item:not(:last-child), .testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}

/* Animations */
.fade-in {
  animation: fadeIn 0.7s cubic-bezier(.61,.01,.29,1.02);
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(24px); }
  100%{ opacity: 1; transform: translateY(0); }
}

/* Accessibility: High-contrast for testimonials/reviews */
.testimonial-card {
  background: #fff;
  color: #22476B;
  border-left: 5px solid #A4C876;
}

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