@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@500;600;700&family=Crimson+Text:wght@400;600&display=swap');

:root {
  --primary: hsl(97, 56%, 33%);
  --secondary: hsl(125, 54%, 12%);
  --accent: hsl(73, 73%, 36%);
}

body {
    font-family: 'Crimson Text', serif;
    color: #222;
    background-color: #fff;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Work Sans', sans-serif;
  }
  * {
    border-radius: 0 !important;
  }
  .navbar {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
  }
  .navbar-brand {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
  }
  .navbar-brand img {
    display: block;
  }
  .navbar-nav .nav-link {
    font-family: 'Work Sans', sans-serif;
    color: var(--secondary);
    font-weight: 600;
    padding: 8px 16px;
  }
  .navbar-nav .nav-link:hover {
    color: var(--primary);
  }
  .navbar-toggler {
    border-color: var(--primary);
  }
  .navbar-toggler-icon {
    filter: none;
  }

#faq-content {
  font-family: 'Crimson Text', serif;
  background: #fdfdfb;
  color: #222;
  padding: 52px 0;
}
#faq-content .faq-heading-wrap {
  max-width: 760px;
  margin: 0 auto 40px;
  padding: 0 16px;
}
#faq-content h1 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(125, 54%, 12%);
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}
#faq-content .faq-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
}
#faq-content .faq-col {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
}
#faq-content .table-wrap {
  margin: 0 0 48px;
}
#faq-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
#faq-content table caption {
  font-family: 'Work Sans', sans-serif;
  text-align: left;
  font-weight: 600;
  color: hsl(125, 54%, 12%);
  padding-bottom: 10px;
  caption-side: top;
}
#faq-content table th,
#faq-content table td {
  border: 1px solid #ddd;
  padding: 10px 12px;
  text-align: left;
  color: #222;
}
#faq-content table th {
  background: hsl(97, 56%, 33%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
}
#faq-content .accordion-item {
  border: 1px solid #ddd;
  border-radius: 0;
  margin-bottom: 10px;
}
#faq-content .accordion-button {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(125, 54%, 12%);
  background: #fff;
  border-radius: 0;
  font-size: 1.05rem;
}
#faq-content .accordion-button:not(.collapsed) {
  color: #fff;
  background: hsl(97, 56%, 33%);
  box-shadow: none;
}
#faq-content .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(97, 56%, 33%);
}
#faq-content .accordion-button::after {
  filter: none;
}
#faq-content .accordion-body {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #333;
  background: #fff;
}
#faq-content .accordion {
  margin-bottom: 48px;
}
#faq-content .faq-cta {
  border: 2px solid hsl(97, 56%, 33%);
  padding: 32px 28px;
  text-align: center;
  background: #f4f7f0;
}
#faq-content .faq-cta h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(125, 54%, 12%);
  font-size: 1.5rem;
  margin-bottom: 14px;
}
#faq-content .faq-cta p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
#faq-content .faq-cta a.btn {
  background: hsl(73, 73%, 36%);
  color: #1a1a1a;
  border: none;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
}
#faq-content .faq-cta a.btn:hover {
  background: hsl(97, 56%, 33%);
  color: #fff;
}
#faq-content .faq-links {
  text-align: center;
  margin-top: 16px;
  font-size: 0.95rem;
}
#faq-content .faq-links a {
  color: hsl(97, 56%, 33%);
  text-decoration: underline;
  margin: 0 8px;
}
@media (max-width: 576px) {
  #faq-content h1 {
    font-size: 1.8rem;
  }
  #faq-content table {
    font-size: 0.9rem;
  }
}

footer.site-footer {
  background: hsl(125, 54%, 12%);
  color: #f5f5f5;
  font-family: 'Crimson Text', serif;
  border-radius: 0;
  padding: 48px 0 24px;
}
footer.site-footer h5 {
  font-family: 'Work Sans', sans-serif;
  color: #ffffff;
  margin-bottom: 16px;
}
footer.site-footer p {
  color: #e6e6e6;
  font-size: 1.05rem;
}
footer.site-footer a {
  color: #f5f5f5;
  text-decoration: none;
}
footer.site-footer a:hover {
  color: hsl(73, 73%, 60%);
  text-decoration: underline;
}
footer.site-footer ul {
  list-style: none;
  padding-left: 0;
}
footer.site-footer ul li {
  margin-bottom: 8px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: hsl(97, 56%, 33%);
  color: #ffffff;
  border-radius: 0;
  margin-right: 8px;
  font-size: 1.2rem;
  transition: background 0.2s ease;
}
.footer-social a:hover {
  background: hsl(73, 73%, 36%);
  color: #ffffff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 32px;
  padding-top: 16px;
  font-size: 0.9rem;
  color: #cccccc;
}
#consentBox {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #ffffff;
  color: #222222;
  border-top: 3px solid hsl(97, 56%, 33%);
  padding: 16px;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Crimson Text', serif;
}
#consentBox h6 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(125, 54%, 12%);
  margin-bottom: 8px;
  font-weight: 700;
}
#consentBox p, #consentBox li {
  font-size: 0.92rem;
  color: #333333;
  margin-bottom: 6px;
}
#consentBox ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.consent-btn {
  font-family: 'Work Sans', sans-serif;
  border-radius: 0;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid hsl(97, 56%, 33%);
  transition: all 0.2s ease;
  width: 100%;
}
.btn-accept-all {
  background: hsl(97, 56%, 33%);
  color: #ffffff;
}
.btn-accept-all:hover {
  background: hsl(125, 54%, 12%);
  border-color: hsl(125, 54%, 12%);
  color: #ffffff;
}
.btn-reject-optional {
  background: #ffffff;
  color: hsl(97, 56%, 33%);
}
.btn-reject-optional:hover {
  background: hsl(73, 73%, 36%);
  border-color: hsl(73, 73%, 36%);
  color: #ffffff;
}
.consent-manage {
  font-size: 0.85rem;
  color: hsl(97, 56%, 33%);
  text-decoration: underline;
}

#about-page {
  font-family: 'Crimson Text', serif;
  color: #222;
  background-color: #fff;
  padding: 56px 0;
}
#about-page .container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#about-page h1, #about-page h2, #about-page h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(125, 54%, 12%);
  font-weight: 600;
}
#about-page h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}
#about-page h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  border-left: 4px solid hsl(97, 56%, 33%);
  padding-left: 12px;
}
#about-page p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
#about-page .lead-text {
  font-size: 1.3rem;
  color: hsl(125, 54%, 12%);
  border-bottom: 1px solid #ddd;
  padding-bottom: 24px;
  margin-bottom: 32px;
}
#about-page img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 24px 0;
}
#about-page .figure-caption {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  margin-top: -18px;
  margin-bottom: 32px;
}
#about-page dl.details-list {
  border-top: 1px solid #ddd;
  margin-top: 24px;
}
#about-page dl.details-list div {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}
#about-page dl.details-list dt {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  width: 260px;
  color: hsl(97, 56%, 33%);
}
#about-page dl.details-list dd {
  margin: 0;
  flex: 1;
  min-width: 200px;
}
#about-page ul.values-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 24px;
}
#about-page ul.values-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid #eee;
  font-size: 1.1rem;
}
#about-page ul.values-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: hsl(73, 73%, 36%);
  font-weight: bold;
}
#about-page .team-section {
  margin-top: 48px;
}
#about-page .team-card {
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 16px;
  background-color: #f8f9fa;
}
#about-page .team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
#about-page .team-role {
  font-family: 'Work Sans', sans-serif;
  color: hsl(97, 56%, 33%);
  font-size: 0.95rem;
  margin-bottom: 10px;
  font-weight: 500;
}
#about-page .team-card p {
  font-size: 1.05rem;
  margin-bottom: 0;
}
#about-page .cta-box {
  margin-top: 48px;
  padding: 28px;
  background-color: hsl(125, 54%, 12%);
  text-align: center;
}
#about-page .cta-box p {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
#about-page .cta-box a {
  display: inline-block;
  background-color: hsl(73, 73%, 36%);
  color: hsl(125, 54%, 12%);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 0;
}
#about-page .cta-box a:hover {
  background-color: hsl(97, 56%, 33%);
  color: #fff;
}
@media (max-width: 576px) {
  #about-page dl.details-list dt {
    width: 100%;
  }
}



.thankyou-section {
  font-family: 'Crimson Text', serif;
  background: linear-gradient(135deg, hsl(97, 56%, 33%, 0.06), hsl(125, 54%, 12%, 0.08));
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 15px;
}

.thankyou-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 35px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.thankyou-icon-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: hsl(97, 56%, 33%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 0 0 10px hsl(97, 56%, 33%, 0.12);
  animation: popIn 0.5s ease-out;
}

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

.thankyou-icon-wrap svg {
  width: 50px;
  height: 50px;
  stroke: #ffffff;
}

.thankyou-heading {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(125, 54%, 12%);
  font-size: 2rem;
  margin-bottom: 18px;
}

.thankyou-text {
  font-size: 1.15rem;
  color: #3a3a3a;
  line-height: 1.7;
  margin-bottom: 14px;
}

.thankyou-highlight {
  background: hsl(73, 73%, 36%, 0.12);
  border-left: 4px solid hsl(73, 73%, 36%);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 28px 0;
  text-align: left;
}

.thankyou-highlight p {
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: hsl(125, 54%, 12%);
}

.thankyou-highlight p:last-child {
  margin-bottom: 0;
}

.thankyou-highlight i {
  color: hsl(97, 56%, 33%);
  margin-right: 10px;
  width: 20px;
}

.btn-thankyou {
  font-family: 'Work Sans', sans-serif;
  background-color: hsl(97, 56%, 33%);
  border: none;
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px hsl(97, 56%, 33%, 0.35);
}

.btn-thankyou:hover {
  background-color: hsl(125, 54%, 12%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px hsl(125, 54%, 12%, 0.4);
}

@media (max-width: 576px) {
  .thankyou-card {
    padding: 36px 22px;
  }
  .thankyou-heading {
    font-size: 1.6rem;
  }
  .thankyou-icon-wrap {
    width: 80px;
    height: 80px;
  }
  .thankyou-icon-wrap svg {
    width: 40px;
    height: 40px;
  }
}

.hero-column {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 20px;
  font-family: 'Crimson Text', serif;
  color: #222;
  background: #ffffff;
}
.hero-column h1 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(125, 54%, 12%);
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
  border-radius: 0;
}
.hero-column h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  color: hsl(97, 56%, 33%);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.hero-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.75rem;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: hsl(97, 56%, 33%);
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 0;
  border: 2px solid hsl(97, 56%, 33%);
  transition: background-color 0.25s ease, color 0.25s ease;
}
.hero-cta:hover {
  background-color: hsl(73, 73%, 36%);
  border-color: hsl(73, 73%, 36%);
  color: #1a1a1a;
}
.hero-img-wrap {
  margin-top: 2.5rem;
}
.hero-img-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

#about-us .about-section {
  font-family: 'Crimson Text', serif;
  background-color: #ffffff;
  color: #222222;
  padding: 52px 0;
}
#about-us .about-section .col-container {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}
#about-us .about-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(125, 54%, 12%);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}
#about-us .about-section h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(97, 56%, 33%);
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
}
#about-us .about-section p {
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 18px;
  color: #222222;
}
#about-us .about-section img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 30px 0;
  border: 1px solid #ddd;
}
#about-us .about-section ul.values-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}
#about-us .about-section ul.values-list li {
  border-left: 4px solid hsl(73, 73%, 36%);
  padding: 8px 16px;
  margin-bottom: 12px;
  font-size: 1.1rem;
  background-color: #f8f9fa;
}
#about-us .about-section ul.values-list li strong {
  color: hsl(125, 54%, 12%);
  font-family: 'Work Sans', sans-serif;
}
#about-us .team-block {
  margin-top: 48px;
  border-top: 1px solid #ddd;
  padding-top: 32px;
}
#about-us .team-card {
  background-color: #f8f9fa;
  border-left: 4px solid hsl(97, 56%, 33%);
  padding: 18px 20px;
  margin-bottom: 16px;
}
#about-us .team-card .name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(125, 54%, 12%);
  font-size: 1.2rem;
}
#about-us .team-card .role {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  color: hsl(73, 73%, 36%);
  font-size: 1rem;
  margin-bottom: 8px;
}
#about-us .team-card .desc {
  font-size: 1.05rem;
  color: #333333;
  margin: 0;
}
@media (max-width: 576px) {
  #about-us .about-section h2 {
    font-size: 1.6rem;
  }
  #about-us .about-section h3 {
    font-size: 1.25rem;
  }
  #about-us .about-section p, #about-us .about-section ul.values-list li {
    font-size: 1.05rem;
  }
}

.services-section {
  background: #ffffff;
  padding: 52px 0;
  color: #222222;
}

.services-section .container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(125, 54%, 12%);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
  border-radius: 0;
}

.services-section .intro-text {
  font-family: 'Crimson Text', serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 40px;
}

.service-list {
  margin: 0;
}

.service-row {
  border-bottom: 1px solid #dcdcdc;
  padding: 22px 0;
}

.service-row:first-child {
  border-top: 1px solid #dcdcdc;
}

.service-row dt {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: hsl(97, 56%, 33%);
  margin-bottom: 8px;
  border-radius: 0;
}

.service-row dd {
  font-family: 'Crimson Text', serif;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #333333;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.service-row dd .desc-text {
  flex: 1 1 480px;
}

.service-row dd .price-tag {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(125, 54%, 12%);
  white-space: nowrap;
  flex: 0 0 auto;
  font-size: 1.05rem;
}

.services-section .note-box {
  margin-top: 44px;
  padding: 18px 20px;
  border-left: 3px solid hsl(73, 73%, 36%);
  background: #f5f5f5;
  font-family: 'Crimson Text', serif;
  font-size: 1.02rem;
  color: #333333;
}

@media (max-width: 576px) {
  .services-section {
    padding: 40px 0;
  }
  .service-row dd {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-row dd .price-tag {
    margin-top: 4px;
  }
}

#help {
  background-color: #ffffff;
  padding: 52px 0;
  font-family: 'Crimson Text', serif;
  color: #222222;
}
#help .faq-column {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}
#help h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(125, 54%, 12%);
  font-size: 2rem;
  margin-bottom: 12px;
  border-radius: 0;
}
#help .intro-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 36px;
}
#help .accordion-item {
  border: 1px solid #d8dbd6;
  border-radius: 0;
  margin-bottom: 10px;
  background-color: #ffffff;
}
#help .accordion-button {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: hsl(125, 54%, 12%);
  background-color: #ffffff;
  border-radius: 0;
  padding: 18px 20px;
}
#help .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: hsl(97, 56%, 33%);
  box-shadow: none;
}
#help .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(97, 56%, 33%);
}
#help .accordion-button::after {
  filter: none;
}
#help .accordion-body {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #2b2b2b;
  padding: 20px;
  background-color: #fafbf9;
}
#help .accordion-body a {
  color: hsl(97, 56%, 33%);
  text-decoration: underline;
}
#help .footer-note {
  margin-top: 36px;
  font-size: 1rem;
  color: #444444;
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}
#help .footer-note strong {
  color: hsl(125, 54%, 12%);
}

#voices {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Crimson Text', serif;
  color: #222;
}
#voices .voices-col {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#voices h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(125, 54%, 12%);
  font-weight: 700;
  border-radius: 0;
  margin-bottom: 8px;
}
#voices .lead-text {
  color: #333;
  margin-bottom: 36px;
  font-size: 1.15rem;
}
#voices .review-block {
  border-top: 1px solid #d8dcd4;
  padding: 28px 0;
}
#voices .review-block:first-of-type {
  border-top: 2px solid hsl(97, 56%, 33%);
}
#voices .review-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
#voices .review-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(125, 54%, 12%);
  font-size: 1.05rem;
}
#voices .review-loc {
  font-size: 0.92rem;
  color: #555;
}
#voices .stars {
  color: hsl(73, 73%, 36%);
  font-size: 1rem;
  letter-spacing: 1px;
}
#voices .stars .dim {
  color: #ccc;
}
#voices .review-text {
  font-size: 1.12rem;
  line-height: 1.65;
  color: #222;
  margin-bottom: 0;
}
#voices .review-text.short {
  font-size: 1.2rem;
  font-style: italic;
  color: hsl(125, 54%, 12%);
}
#voices .tag-line {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: hsl(97, 56%, 33%);
  padding: 3px 10px;
  border-radius: 0;
}
#voices .summary-line {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #d8dcd4;
  font-size: 0.98rem;
  color: #444;
}
@media (max-width: 576px) {
  #voices .review-head {
    flex-direction: column;
  }
}

#reach-us .contact-section {background:#f8f9fa;color:#222;padding:52px 0;font-family:'Crimson Text',serif;}
#reach-us .contact-section .container {max-width:760px;}
#reach-us .contact-section h2 {font-family:'Work Sans',sans-serif;color:hsl(125,54%,12%);font-weight:600;font-size:2rem;margin-bottom:0.6rem;}
#reach-us .contact-section .lead-text {font-size:1.15rem;color:#333;margin-bottom:2rem;}
#reach-us .contact-block {margin-bottom:2rem;}
#reach-us .contact-block h3 {font-family:'Work Sans',sans-serif;color:hsl(97,56%,33%);font-weight:600;font-size:1.3rem;margin-bottom:0.8rem;}
#reach-us .contact-block dl {margin:0;}
#reach-us .contact-block dt {font-weight:600;color:hsl(125,54%,12%);font-family:'Work Sans',sans-serif;font-size:0.95rem;margin-top:0.6rem;}
#reach-us .contact-block dd {margin-bottom:0;font-size:1.1rem;}
#reach-us .contact-block a {color:hsl(97,56%,33%);text-decoration:underline;}
#reach-us .contact-block a:hover {color:hsl(73,73%,36%);}
#reach-us .find-us {font-size:1rem;color:#333;margin-top:0.5rem;}
#reach-us .find-us a {color:hsl(97,56%,33%);font-weight:600;}
#reach-us hr.section-rule {border:none;border-top:1px solid #ccc;margin:2rem 0;}
#reach-us .contact-form label {font-family:'Work Sans',sans-serif;font-weight:600;color:hsl(125,54%,12%);margin-bottom:0.3rem;}
#reach-us .contact-form .form-control {border:1px solid #999;border-radius:0;font-family:'Crimson Text',serif;font-size:1.05rem;padding:0.6rem 0.75rem;}
#reach-us .contact-form .form-control:focus {border-color:hsl(97,56%,33%);box-shadow:none;}
#reach-us .contact-form textarea.form-control {min-height:140px;}
#reach-us .btn-send {background:hsl(97,56%,33%);color:#fff;border:none;border-radius:0;font-family:'Work Sans',sans-serif;font-weight:600;padding:0.7rem 2rem;font-size:1rem;}
#reach-us .btn-send:hover {background:hsl(73,73%,36%);color:#fff;}
#reach-us .hours-table {width:100%;font-size:1.05rem;}
#reach-us .hours-table td {padding:0.15rem 0;}
#reach-us .hours-table td:first-child {color:hsl(125,54%,12%);font-weight:600;width:50%;}

.disclaimer-section {
  font-family: 'Crimson Text', serif;
  background-color: #f8f9fa;
  color: #222;
  padding: 48px 0;
}
.disclaimer-section .col-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
.disclaimer-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(125, 54%, 12%);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.disclaimer-section h2 i {
  color: hsl(97, 56%, 33%);
  font-size: 1.6rem;
}
.disclaimer-section p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
  border-left: 3px solid hsl(73, 73%, 36%);
  padding-left: 18px;
}

#contact-main {
  font-family: 'Crimson Text', serif;
  background-color: #ffffff;
  color: #222222;
  padding: 52px 0;
}
#contact-main .contact-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}
#contact-main h1 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(125, 54%, 12%);
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
#contact-main p.lead-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 32px;
}
#contact-main h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(97, 56%, 33%);
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  border-bottom: 2px solid hsl(73, 73%, 36%);
  padding-bottom: 8px;
}
#contact-main .info-block {
  margin-bottom: 48px;
}
#contact-main dl {
  margin-bottom: 0;
}
#contact-main dt {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(125, 54%, 12%);
  margin-top: 14px;
}
#contact-main dd {
  margin-left: 0;
  margin-bottom: 6px;
  font-size: 1.1rem;
}
#contact-main a {
  color: hsl(97, 56%, 33%);
  text-decoration: underline;
}
#contact-main a:hover {
  color: hsl(73, 73%, 36%);
}
#contact-main .find-us {
  font-size: 1.05rem;
  color: #444444;
  margin-top: 6px;
  margin-bottom: 6px;
}
#contact-main .hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
#contact-main .hours-table td {
  padding: 6px 4px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.05rem;
}
#contact-main .hours-table td:first-child {
  font-weight: 600;
  color: hsl(125, 54%, 12%);
  width: 45%;
}
#contact-main form {
  margin-top: 20px;
}
#contact-main label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(125, 54%, 12%);
  margin-bottom: 6px;
  display: block;
}
#contact-main .form-control {
  border: 1px solid #ccc;
  border-radius: 0;
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
  padding: 10px 12px;
  margin-bottom: 20px;
}
#contact-main .form-control:focus {
  border-color: hsl(97, 56%, 33%);
  box-shadow: 0 0 0 2px hsla(97, 56%, 33%, 0.2);
  outline: none;
}
#contact-main textarea.form-control {
  min-height: 140px;
}
#contact-main .btn-submit {
  background-color: hsl(97, 56%, 33%);
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 0;
  padding: 12px 32px;
  font-size: 1.05rem;
  cursor: pointer;
}
#contact-main .btn-submit:hover {
  background-color: hsl(73, 73%, 36%);
  color: hsl(125, 54%, 12%);
}
#contact-main .cta-final {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 2px solid hsl(73, 73%, 36%);
  text-align: left;
}
#contact-main .cta-final a.btn-cta {
  display: inline-block;
  background-color: hsl(125, 54%, 12%);
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 0;
}
#contact-main .cta-final a.btn-cta:hover {
  background-color: hsl(97, 56%, 33%);
}
@media (max-width: 576px) {
  #contact-main h1 {
    font-size: 1.7rem;
  }
  #contact-main .hours-table td {
    font-size: 0.98rem;
  }
}
