@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Merriweather:wght@300;400;700&display=swap');

:root {
  --primary: hsl(120, 48%, 35%);
  --secondary: hsl(126, 34%, 18%);
  --accent: hsl(112, 67%, 40%);
}

body {
  font-family: 'Merriweather', serif;
  color: #222;
  background-color: #fff;
}
h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: 'Lato', sans-serif;
}
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
}
.navbar-brand {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-nav .nav-link {
  color: var(--secondary);
  font-weight: 600;
  padding: 0.5rem 1rem;
}
.navbar-nav .nav-link:hover {
  color: var(--primary);
}
.navbar-toggler {
  border-color: var(--primary);
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem hsla(120, 48%, 35%, 0.25);
}

#faq-body {
  background-color: #ffffff;
  font-family: 'Merriweather', serif;
  color: #222222;
  padding: 52px 0;
}
#faq-body h1, #faq-body h2, #faq-body h3 {
  font-family: 'Lato', sans-serif;
}
#faq-body .faq-header {
  margin-bottom: 44px;
}
#faq-body .faq-header h1 {
  color: hsl(126, 34%, 18%);
  font-weight: 700;
}
#faq-body .faq-header p {
  color: #333333;
  max-width: 720px;
}
#faq-body .accordion-item {
  border: 1px solid #d9d9d9;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  margin-bottom: 12px;
}
#faq-body .accordion-button {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(126, 34%, 18%);
  background-color: #ffffff;
  border-radius: 0;
}
#faq-body .accordion-button:not(.collapsed) {
  background-color: hsl(120, 48%, 35%);
  color: #ffffff;
  box-shadow: none;
}
#faq-body .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(53, 138, 53, 0.25);
}
#faq-body .accordion-button::after {
  filter: none;
}
#faq-body .accordion-body {
  background-color: #f8f9f8;
  color: #222222;
  line-height: 1.7;
}
#faq-body .extra-qa {
  background-color: #f2f6f2;
  border: 1px solid #d9d9d9;
  padding: 32px;
  margin-top: 48px;
}
#faq-body .extra-qa h2 {
  color: hsl(126, 34%, 18%);
  font-weight: 700;
  margin-bottom: 20px;
}
#faq-body .extra-qa .qa-block {
  margin-bottom: 20px;
}
#faq-body .extra-qa .qa-block h3 {
  font-size: 1.05rem;
  color: hsl(120, 48%, 35%);
  font-weight: 700;
  margin-bottom: 6px;
}
#faq-body .extra-qa .qa-block p {
  margin-bottom: 0;
  color: #333333;
}
#faq-body .cta-box {
  background-color: hsl(126, 34%, 18%);
  color: #ffffff;
  padding: 40px;
  margin-top: 48px;
  text-align: center;
}
#faq-body .cta-box h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
}
#faq-body .cta-box p {
  color: #f0f4f0;
  margin-bottom: 24px;
}
#faq-body .cta-box .btn {
  background-color: hsl(112, 67%, 40%);
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 12px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
#faq-body .cta-box .btn:hover {
  background-color: hsl(112, 67%, 32%);
  color: #ffffff;
}

footer {
  background: hsl(126, 34%, 18%);
  color: #f5f5f5;
  font-family: 'Merriweather', serif;
  padding: 48px 0 20px;
  border-top: 4px solid hsl(112, 67%, 40%);
}
footer h5 {
  font-family: 'Lato', sans-serif;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 700;
}
footer a {
  color: #d8e8d8;
  text-decoration: none;
}
footer a:hover {
  color: hsl(112, 67%, 40%);
  text-decoration: underline;
}
footer .footer-desc {
  color: #d8e8d8;
  font-size: 0.95rem;
  line-height: 1.6;
}
footer ul {
  list-style: none;
  padding-left: 0;
}
footer ul li {
  margin-bottom: 8px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: hsl(120, 48%, 35%);
  color: #ffffff;
  margin-right: 10px;
  border-radius: 0;
  font-size: 1.1rem;
  border: 1px solid hsl(112, 67%, 40%);
}
.footer-social a:hover {
  background: hsl(112, 67%, 40%);
  color: #ffffff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 24px;
  padding-top: 16px;
  font-size: 0.85rem;
  color: #c0d4c0;
}

#cookiePanel {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: #ffffff;
  border-top: 3px solid hsl(120, 48%, 35%);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Merriweather', serif;
}
#cookiePanel h6 {
  font-family: 'Lato', sans-serif;
  color: hsl(126, 34%, 18%);
  font-weight: 700;
  margin-bottom: 8px;
}
#cookiePanel p, #cookiePanel li {
  color: #333333;
  font-size: 0.85rem;
  margin-bottom: 4px;
}
#cookiePanel ul {
  padding-left: 18px;
  margin-bottom: 12px;
}
.cookie-btn {
  border-radius: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 8px 18px;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: all 0.2s ease-in-out;
}
.btn-accept-all {
  background: hsl(120, 48%, 35%);
  color: #ffffff;
  border-color: hsl(120, 48%, 35%);
}
.btn-accept-all:hover {
  background: hsl(112, 67%, 40%);
  border-color: hsl(112, 67%, 40%);
  color: #ffffff;
}
.btn-reject-optional {
  background: #ffffff;
  color: hsl(126, 34%, 18%);
  border-color: hsl(126, 34%, 18%);
}
.btn-reject-optional:hover {
  background: hsl(126, 34%, 18%);
  color: #ffffff;
}
.btn-manage-settings {
  background: none;
  color: hsl(120, 48%, 35%);
  text-decoration: underline;
  border: none;
  padding: 8px 10px;
  font-size: 0.85rem;
}
.btn-manage-settings:hover {
  color: hsl(112, 67%, 40%);
}

#portfolio-body {
  background-color: #ffffff;
  font-family: 'Merriweather', serif;
  color: #222;
  padding: 52px 0;
}
#portfolio-body h1,
#portfolio-body h2,
#portfolio-body h3,
#portfolio-body h4 {
  font-family: 'Lato', sans-serif;
  color: hsl(126, 34%, 18%);
}
#portfolio-body .intro-block {
  max-width: 760px;
  margin: 0 auto 40px auto;
  text-align: center;
}
#portfolio-body .intro-block p {
  font-size: 1.05rem;
  line-height: 1.7;
}
#portfolio-body .card {
  border: 1px solid #d9d9d9;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  background-color: #ffffff;
  height: 100%;
}
#portfolio-body .card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #eee;
}
#portfolio-body .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio-body .badge-category {
  background-color: hsl(112, 67%, 40%);
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 5px 10px;
  border-radius: 0;
  display: inline-block;
  margin-bottom: 10px;
}
#portfolio-body .card-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}
#portfolio-body .card-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
#portfolio-body .btn-detail {
  background-color: hsl(120, 48%, 35%);
  color: #ffffff;
  border: none;
  border-radius: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  padding: 8px 18px;
}
#portfolio-body .btn-detail:hover {
  background-color: hsl(126, 34%, 18%);
  color: #ffffff;
}
#portfolio-body .modal-content {
  border-radius: 0;
  border: 1px solid #d9d9d9;
}
#portfolio-body .modal-header {
  background-color: hsl(126, 34%, 18%);
  color: #ffffff;
  border-radius: 0;
}
#portfolio-body .modal-header .btn-close {
  filter: invert(1);
}
#portfolio-body .modal-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #eee;
}
#portfolio-body .modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio-body .modal-body p {
  line-height: 1.7;
  color: #333;
}
#portfolio-body .stats-strip {
  background-color: hsl(120, 48%, 96%);
  border: 1px solid #d9d9d9;
  padding: 28px 20px;
  margin: 48px 0;
}
#portfolio-body .stats-strip .stat-number {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: hsl(120, 48%, 35%);
}
#portfolio-body .stats-strip .stat-label {
  font-size: 0.9rem;
  color: #333;
}
#portfolio-body .qa-block {
  max-width: 820px;
  margin: 0 auto;
}
#portfolio-body .qa-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 18px 0;
}
#portfolio-body .qa-item h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
#portfolio-body .qa-item p {
  margin-bottom: 0;
  color: #333;
  line-height: 1.65;
}
#portfolio-body .cta-final {
  background-color: hsl(120, 48%, 35%);
  color: #ffffff;
  padding: 38px 24px;
  text-align: center;
  margin-top: 48px;
}
#portfolio-body .cta-final h3 {
  color: #ffffff;
}
#portfolio-body .cta-final p {
  color: #f0f7f0;
}
#portfolio-body .cta-final .btn-cta {
  background-color: #ffffff;
  color: hsl(126, 34%, 18%);
  border: none;
  border-radius: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 12px 30px;
  margin-top: 10px;
}
#portfolio-body .cta-final .btn-cta:hover {
  background-color: hsl(112, 67%, 40%);
  color: #ffffff;
}
#portfolio-body .section-divider {
  border-top: 1px solid #e0e0e0;
  margin: 48px 0;
}

.hero-section{
  background:#f5f9f5;
  padding:52px 0;
}
.hero-img{
  aspect-ratio:3/2;
  width:100%;
  height:auto;
  object-fit:cover;
  border:1px solid #ddd;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
}
.hero-section h1{
  font-family:'Lato',sans-serif;
  font-weight:700;
  color:hsl(126,34%,18%);
}
.hero-section h2{
  font-family:'Lato',sans-serif;
  font-weight:400;
  font-size:1.25rem;
  color:hsl(120,48%,35%);
}
.hero-section p, .hero-section li{
  font-family:'Merriweather',serif;
  color:#333;
}
.hero-list{
  list-style:none;
  padding-left:0;
}
.hero-list li{
  margin-bottom:10px;
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.hero-list i{
  color:hsl(112,67%,40%);
  font-size:1.1rem;
  margin-top:3px;
}
.btn-hero-primary{
  background:hsl(120,48%,35%);
  border:1px solid hsl(120,48%,35%);
  color:#fff;
  border-radius:0;
  padding:12px 28px;
  font-family:'Lato',sans-serif;
  font-weight:700;
  transition:all 0.2s ease;
}
.btn-hero-primary:hover{
  background:hsl(112,67%,40%);
  border-color:hsl(112,67%,40%);
  color:#fff;
}
.btn-hero-secondary{
  background:transparent;
  border:1px solid hsl(126,34%,18%);
  color:hsl(126,34%,18%);
  border-radius:0;
  padding:12px 28px;
  font-family:'Lato',sans-serif;
  font-weight:700;
  transition:all 0.2s ease;
}
.btn-hero-secondary:hover{
  background:hsl(126,34%,18%);
  color:#fff;
}
@media(max-width:767px){
  .hero-section{padding:40px 0;}
  .hero-section h1{font-size:1.8rem;}
}

.services-section {
  background-color: #f5f9f5;
  padding: 52px 0;
  font-family: 'Merriweather', serif;
}

.services-section h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(126, 34%, 18%);
  font-weight: 700;
}

.services-section .lead {
  color: #333;
}

.service-card {
  background-color: #fff;
  border: 1px solid #d8e2d8;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  padding: 32px 24px;
  height: 100%;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
  transform: translateY(-6px);
  border-color: hsl(112, 67%, 40%);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px auto;
  background-color: hsl(120, 48%, 35%);
  color: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: background-color 0.25s ease;
}

.service-card:hover .service-icon {
  background-color: hsl(112, 67%, 40%);
}

.service-card h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(126, 34%, 18%);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-price {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: hsl(126, 34%, 18%);
  display: inline-block;
  padding: 8px 18px;
  font-size: 1.05rem;
  border-radius: 0;
}

.service-terms {
  margin-top: 14px;
  font-size: 0.85rem;
  color: hsl(120, 48%, 35%);
  border-top: 1px dashed #d8e2d8;
  padding-top: 10px;
}

#value {
  background-color: #f5f5f5;
  padding: 52px 0;
  font-family: 'Merriweather', serif;
}
#value h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(126, 34%, 18%);
  font-weight: 700;
}
#value .subtitle {
  color: #333;
  max-width: 720px;
  margin: 0 auto;
}
#value .advantage-card {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  padding: 28px 24px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#value .advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
  border-color: hsl(112, 67%, 40%);
}
#value .icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(120, 48%, 35%);
  color: #fff;
  margin-bottom: 16px;
}
#value .icon-wrap i {
  font-size: 1.5rem;
}
#value .advantage-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  color: hsl(126, 34%, 18%);
  font-weight: 700;
  margin-bottom: 10px;
}
#value .advantage-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

#how-we-work {
    background-color: #f5f5f5;
    padding: 48px 0;
    font-family: 'Merriweather', serif;
  }

  #how-we-work h2 {
    font-family: 'Lato', sans-serif;
    color: hsl(126, 34%, 18%);
    font-weight: 700;
  }

  #how-we-work .lead-text {
    color: #333;
    max-width: 700px;
  }

  #how-we-work .work-card {
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 0;
    padding: 22px 20px;
    height: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  #how-we-work .work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  }

  #how-we-work .icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: hsl(120, 48%, 35%);
    color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 14px;
  }

  #how-we-work .work-item {
    display: flex;
    align-items: flex-start;
  }

  #how-we-work .work-text {
    color: #222;
    font-size: 0.98rem;
    line-height: 1.5;
    margin: 0;
  }

  @media (max-width: 767px) {
    #how-we-work {
      padding: 40px 0;
    }
  }

#gallery {
  font-family: 'Merriweather', serif;
  background-color: #ffffff;
  padding: 52px 0;
  color: #222;
}
#gallery h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(126, 34%, 18%);
  font-weight: 700;
}
#gallery .lead-text {
  color: #333;
  max-width: 700px;
}
#gallery .portfolio-card {
  border: 1px solid #dcdcdc;
  border-radius: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#gallery .portfolio-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #eaeaea;
}
#gallery .portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#gallery .portfolio-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#gallery .portfolio-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: hsl(126, 34%, 18%);
  margin-bottom: 8px;
}
#gallery .category-badge {
  display: inline-block;
  background-color: hsl(112, 67%, 40%);
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 0;
  margin-bottom: 10px;
  align-self: flex-start;
}
#gallery .portfolio-card p.desc {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}
#gallery .btn-details {
  background-color: hsl(120, 48%, 35%);
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 0;
  padding: 8px 18px;
  align-self: flex-start;
}
#gallery .btn-details:hover {
  background-color: hsl(126, 34%, 18%);
  color: #ffffff;
}
#gallery .modal-content {
  border-radius: 0;
  border: 1px solid #dcdcdc;
}
#gallery .modal-header {
  background-color: hsl(126, 34%, 18%);
  color: #ffffff;
  border-radius: 0;
}
#gallery .modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}
#gallery .modal-title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
#gallery .modal-body {
  color: #333;
  line-height: 1.6;
}
#gallery .modal-body .modal-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 16px;
}
#gallery .modal-body .modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#gallery .modal-body .facts-list {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
}
#gallery .modal-body .facts-list li {
  padding: 4px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}
#gallery .modal-body .facts-list li strong {
  color: hsl(120, 48%, 35%);
}

#who-we-are {
  font-family: 'Merriweather', serif;
  color: #222;
  background-color: #fff;
  padding: 52px 0;
}
#who-we-are h2, #who-we-are h3, #who-we-are h4 {
  font-family: 'Lato', sans-serif;
}
#who-we-are .section-title {
  color: hsl(120, 48%, 35%);
  font-weight: 700;
  margin-bottom: 24px;
}
#who-we-are p {
  line-height: 1.7;
  font-size: 1.02rem;
}
#who-we-are .img-wrap {
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow: hidden;
}
#who-we-are .img-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
#who-we-are .values-card {
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  background-color: #f7faf7;
  padding: 20px;
  height: 100%;
  border-radius: 0;
}
#who-we-are .values-card h4 {
  color: hsl(126, 34%, 18%);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
#who-we-are .stats-strip {
  background-color: hsl(126, 34%, 18%);
  color: #f8f9fa;
  padding: 28px 20px;
  margin-top: 48px;
  margin-bottom: 48px;
}
#who-we-are .stats-strip .stat-number {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: hsl(112, 67%, 40%);
}
#who-we-are .stats-strip .stat-label {
  font-size: 0.9rem;
  color: #e6efe6;
}
#who-we-are .team-card {
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  background-color: #fff;
  padding: 22px;
  border-radius: 0;
  height: 100%;
}
#who-we-are .team-card h5 {
  font-family: 'Lato', sans-serif;
  color: hsl(120, 48%, 35%);
  margin-bottom: 2px;
  font-weight: 700;
}
#who-we-are .team-card .role {
  color: hsl(126, 34%, 18%);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
#who-we-are .team-heading {
  margin-top: 48px;
  color: hsl(126, 34%, 18%);
  font-weight: 700;
}

#reviews {
  padding: 52px 0;
  background: #ffffff;
  font-family: 'Merriweather', serif;
  color: #222;
}
#reviews h2, #reviews h3 {
  font-family: 'Lato', sans-serif;
}
#reviews .reviews-header {
  margin-bottom: 40px;
}
#reviews .reviews-header h2 {
  color: hsl(126, 34%, 18%);
  font-weight: 700;
}
#reviews .reviews-header p {
  color: #444;
  max-width: 700px;
}
#reviews .review-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#reviews .review-card.tinted {
  background: #f4faf5;
}
#reviews .review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
#reviews .reviewer-name {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(126, 34%, 18%);
  margin-bottom: 2px;
}
#reviews .reviewer-loc {
  font-size: 0.85rem;
  color: #666;
}
#reviews .stars {
  color: hsl(112, 67%, 40%);
  font-size: 0.95rem;
  white-space: nowrap;
}
#reviews .stars .empty {
  color: #ccc;
}
#reviews .review-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #2b2b2b;
  flex-grow: 1;
}
#reviews .review-badge {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
  color: hsl(120, 48%, 35%);
  border: 1px solid hsl(120, 48%, 35%);
  padding: 2px 8px;
  align-self: flex-start;
}
#reviews .stats-strip {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
  margin-top: 48px;
}
#reviews .stat-item {
  text-align: center;
}
#reviews .stat-num {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: hsl(120, 48%, 35%);
}
#reviews .stat-label {
  font-size: 0.85rem;
  color: #555;
}
@media (max-width: 767px) {
  #reviews .review-card { padding: 18px; }
}

#contacts {
  background-color: #f5f8f5;
  padding: 52px 0;
  font-family: 'Merriweather', serif;
  color: #222;
}
#contacts h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(126, 34%, 18%);
  font-weight: 700;
}
#contacts .subtitle {
  color: #333;
  margin-bottom: 32px;
}
#contacts .contact-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 32px;
  height: 100%;
}
#contacts .contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
#contacts .contact-info-list li {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
#contacts .contact-info-list .icon-box {
  width: 36px;
  height: 36px;
  background-color: hsl(120, 48%, 35%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 0;
  font-size: 1rem;
}
#contacts .contact-info-list a {
  color: hsl(120, 48%, 35%);
  text-decoration: none;
  font-weight: 700;
}
#contacts .contact-info-list a:hover {
  text-decoration: underline;
  color: hsl(112, 67%, 40%);
}
#contacts .hours-table {
  width: 100%;
  font-size: 0.95rem;
  color: #333;
}
#contacts .hours-table td {
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}
#contacts .find-us-note {
  background-color: #f0f5f0;
  border-left: 3px solid hsl(112, 67%, 40%);
  padding: 12px 16px;
  margin-top: 16px;
  font-size: 0.95rem;
  color: #333;
}
#contacts .find-us-note a {
  color: hsl(126, 34%, 18%);
  font-weight: 700;
  text-decoration: underline;
}
#contacts .form-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(126, 34%, 18%);
}
#contacts .form-control {
  border-radius: 0;
  border: 1px solid #ccc;
}
#contacts .form-control:focus {
  border-color: hsl(120, 48%, 35%);
  box-shadow: 0 0 0 0.2rem rgba(65, 179, 41, 0.2);
}
#contacts .btn-send {
  background-color: hsl(120, 48%, 35%);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 12px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#contacts .btn-send:hover {
  background-color: hsl(112, 67%, 40%);
  color: #fff;
}
#contacts .reply-note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 10px;
}

#legal-notice {
  font-family: 'Merriweather', serif;
  background-color: #f5f7f5;
  padding: 50px 0;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}
#legal-notice h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(126, 34%, 18%);
  font-weight: 700;
}
#legal-notice .disclaimer-card {
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  padding: 32px;
}
#legal-notice .icon-wrap {
  color: hsl(120, 48%, 35%);
  font-size: 2rem;
  flex-shrink: 0;
}
#legal-notice p {
  color: #333333;
  line-height: 1.75;
  margin-bottom: 0;
  font-size: 0.98rem;
}

#about-body {
  font-family: 'Merriweather', serif;
  color: #222;
  background-color: #ffffff;
}
#about-body h1, #about-body h2, #about-body h3, #about-body h4 {
  font-family: 'Lato', sans-serif;
  color: hsl(126, 34%, 18%);
}
#about-body .section-block {
  padding: 48px 0;
}
#about-body .tinted {
  background-color: #f5f9f5;
}
#about-body .lead-text {
  font-size: 1.05rem;
  line-height: 1.8;
}
#about-body .card {
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  background-color: #ffffff;
}
#about-body .value-card {
  padding: 20px;
  height: 100%;
}
#about-body .value-card h3 {
  font-size: 1.15rem;
  color: hsl(120, 48%, 35%);
}
#about-body img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #ddd;
}
#about-body .team-card {
  padding: 22px;
  height: 100%;
}
#about-body .team-card h4 {
  margin-bottom: 4px;
  font-size: 1.1rem;
}
#about-body .team-card .role {
  color: hsl(112, 67%, 40%);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
#about-body table {
  border-collapse: collapse;
  width: 100%;
}
#about-body table th, #about-body table td {
  border: 1px solid #ccc;
  padding: 10px 12px;
  font-size: 0.95rem;
}
#about-body table th {
  background-color: hsl(126, 34%, 18%);
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  text-align: left;
}
#about-body .cta-box {
  background-color: hsl(120, 48%, 35%);
  color: #ffffff;
  padding: 40px;
  text-align: center;
}
#about-body .cta-box h2 {
  color: #ffffff;
}
#about-body .cta-box p {
  color: #f0f5f0;
}
#about-body .btn-cta {
  background-color: hsl(112, 67%, 40%);
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  border-radius: 0;
}
#about-body .btn-cta:hover {
  background-color: hsl(112, 67%, 32%);
  color: #ffffff;
}
#about-body .divider-line {
  width: 60px;
  height: 3px;
  background-color: hsl(112, 67%, 40%);
  margin: 12px 0 24px 0;
}

#contact-content {
  font-family: 'Merriweather', serif;
  background-color: #ffffff;
  color: #222;
  padding: 52px 0;
}

#contact-content h1,
#contact-content h2,
#contact-content h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(126, 34%, 18%);
}

#contact-content .page-header {
  background-color: hsl(126, 34%, 18%);
  color: #f8f9fa;
  padding: 56px 0;
  margin-bottom: 48px;
}

#contact-content .page-header h1 {
  color: #ffffff;
}

#contact-content .page-header p {
  color: #f0f0f0;
}

#contact-content .card {
  border: 1px solid #dcdcdc;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background-color: #ffffff;
}

#contact-content .info-card {
  background-color: #f5f9f5;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  padding: 32px;
  height: 100%;
}

#contact-content .info-item {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e0e0e0;
}

#contact-content .info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

#contact-content .info-item strong {
  display: block;
  font-family: 'Lato', sans-serif;
  color: hsl(120, 48%, 35%);
  margin-bottom: 6px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

#contact-content .info-item a {
  color: #222;
  text-decoration: none;
}

#contact-content .info-item a:hover {
  color: hsl(120, 48%, 35%);
  text-decoration: underline;
}

#contact-content .map-link {
  color: hsl(120, 48%, 35%);
  font-weight: 700;
  text-decoration: underline;
}

#contact-content .map-link:hover {
  color: hsl(126, 34%, 18%);
}

#contact-content .hours-table td {
  padding: 4px 0;
  font-size: 0.95rem;
  border: none;
}

#contact-content .hours-table td.day {
  font-weight: 700;
  color: hsl(126, 34%, 18%);
  width: 55%;
}

#contact-content .form-section {
  padding: 32px;
}

#contact-content .form-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(126, 34%, 18%);
}

#contact-content .form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  padding: 10px 12px;
}

#contact-content .form-control:focus {
  border-color: hsl(120, 48%, 35%);
  box-shadow: 0 0 0 0.2rem rgba(63, 143, 63, 0.2);
}

#contact-content .btn-primary {
  background-color: hsl(120, 48%, 35%);
  border-color: hsl(120, 48%, 35%);
  border-radius: 0;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

#contact-content .btn-primary:hover {
  background-color: hsl(126, 34%, 18%);
  border-color: hsl(126, 34%, 18%);
  color: #ffffff;
}

#contact-content .response-badge {
  background-color: hsl(112, 67%, 40%);
  color: #ffffff;
  padding: 16px 20px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

#contact-content .cta-final {
  background-color: hsl(126, 34%, 18%);
  color: #f8f9fa;
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}

#contact-content .cta-final h2 {
  color: #ffffff;
}

#contact-content .cta-final p {
  color: #e5e5e5;
}

#contact-content .cta-final .btn-accent {
  background-color: hsl(112, 67%, 40%);
  border-color: hsl(112, 67%, 40%);
  color: #ffffff;
  border-radius: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}

#contact-content .btn-accent:hover {
  background-color: hsl(120, 48%, 35%);
  color: #ffffff;
}

@media (max-width: 767px) {
  #contact-content .form-section,
  #contact-content .info-card {
    padding: 22px;
  }
}



  .thankyou-section {
    font-family: 'Merriweather', serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, hsl(120, 48%, 35%, 0.05) 0%, hsl(112, 67%, 40%, 0.08) 100%);
    padding: 3rem 1rem;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    max-width: 640px;
    margin: 0 auto;
  }

  .thankyou-heading {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: hsl(126, 34%, 18%);
  }

  .icon-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(120, 48%, 35%) 0%, hsl(112, 67%, 40%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1.5rem hsl(120, 48%, 35%, 0.35);
    animation: popIn 0.6s ease-out;
  }

  .icon-wrapper svg {
    width: 56px;
    height: 56px;
    stroke: #ffffff;
  }

  @keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
  }

  .thankyou-message {
    color: hsl(126, 34%, 18%, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .info-box {
    background: hsl(120, 48%, 35%, 0.06);
    border-left: 4px solid hsl(112, 67%, 40%);
    border-radius: 0.5rem;
    padding: 1.25rem 1.5rem;
    text-align: left;
  }

  .info-box .info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .info-box .info-item:last-child {
    margin-bottom: 0;
  }

  .info-box svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: hsl(120, 48%, 35%);
    margin-top: 2px;
  }

  .btn-home {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    background-color: hsl(120, 48%, 35%);
    border-color: hsl(120, 48%, 35%);
    color: #fff;
    padding: 0.75rem 2.25rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
  }

  .btn-home:hover,
  .btn-home:focus {
    background-color: hsl(112, 67%, 40%);
    border-color: hsl(112, 67%, 40%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem hsl(112, 67%, 40%, 0.4);
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2rem 1.25rem;
    }
    .thankyou-heading {
      font-size: 1.5rem;
    }
    .icon-wrapper {
      width: 90px;
      height: 90px;
    }
    .icon-wrapper svg {
      width: 46px;
      height: 46px;
    }
  }
