:root {
  --primary: hsl(40, 66%, 35%);
  --secondary: hsl(68, 65%, 21%);
  --accent: hsl(16, 86%, 59%);
}

body{
  font-family: 'Source Sans Pro', sans-serif;
  color: #262626;
  background-color: #fdfcfa;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Montserrat', sans-serif;
}
.navbar{
  background-color: #ffffff;
  border-bottom: 1px solid #e9e4da;
}
.navbar-brand{
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
}
.navbar-brand img{
  border-radius: 8px;
}
.nav-link{
  color: #262626 !important;
  font-weight: 600;
  margin: 0 6px;
  border-radius: 6px;
  transition: color .2s ease, background-color .2s ease;
}
.nav-link:hover{
  color: var(--primary) !important;
  background-color: #f5f1e8;
}
.navbar-toggler{
  border-color: var(--primary);
}
.navbar-toggler:focus{
  box-shadow: 0 0 0 0.2rem hsla(40, 66%, 35%, 0.25);
}

#services-page {
  background-color: #ffffff;
  color: #2a2a2a;
  font-family: 'Source Sans Pro', sans-serif;
  padding: 96px 0;
}
#services-page .col-column {
  max-width: 760px;
  margin: 0 auto;
  float: none;
}
#services-page h1 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(40, 66%, 35%);
  font-weight: 700;
  font-size: 2.1rem;
  margin-bottom: 12px;
}
#services-page .intro {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 48px;
  color: #333;
}
#services-page h2 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(68, 65%, 21%);
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 64px;
  margin-bottom: 20px;
}
#services-page .service-row {
  border-top: 1px solid #e2ded4;
  padding: 22px 0;
}
#services-page .service-row:last-of-type {
  border-bottom: 1px solid #e2ded4;
}
#services-page .service-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
#services-page .service-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: #222;
  margin: 0;
}
#services-page .service-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: hsl(16, 86%, 45%);
  white-space: nowrap;
}
#services-page .service-desc {
  margin: 8px 0 0;
  color: #444;
  line-height: 1.6;
  font-size: 0.98rem;
}
#services-page .steps {
  counter-reset: step;
  padding-left: 0;
  list-style: none;
  margin-bottom: 8px;
}
#services-page .steps li {
  position: relative;
  padding-left: 44px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #333;
}
#services-page .steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: hsl(40, 66%, 35%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
#services-page .terms-box {
  background: #f8f6f0;
  border-radius: 8px;
  padding: 28px 30px;
  margin-top: 40px;
}
#services-page .terms-box p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #333;
}
#services-page .terms-box p:last-child {
  margin-bottom: 0;
}
#services-page .cta-block {
  margin-top: 88px;
  text-align: center;
  border-top: 1px solid #e2ded4;
  padding-top: 48px;
}
#services-page .cta-block p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 22px;
}
#services-page .btn-cta {
  background: hsl(16, 86%, 59%);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 12px 34px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}
#services-page .btn-cta:hover {
  background: hsl(16, 86%, 49%);
  color: #ffffff;
}
@media (max-width: 576px) {
  #services-page { padding: 64px 0; }
  #services-page .service-price { font-size: 1rem; }
}

footer.site-footer {
  background: hsl(68, 65%, 21%);
  color: #f5f5f0;
  font-family: 'Source Sans Pro', sans-serif;
  padding: 64px 0 24px;
}
footer.site-footer h5 {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
footer.site-footer p, footer.site-footer li, footer.site-footer address {
  color: #e8e6de;
}
footer.site-footer a {
  color: #f0dfc0;
  text-decoration: none;
}
footer.site-footer a:hover {
  color: hsl(16, 86%, 59%);
  text-decoration: underline;
}
footer.site-footer ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
footer.site-footer ul li {
  margin-bottom: 8px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: hsl(40, 66%, 35%);
  color: #fff;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background 0.2s ease;
}
.footer-socials a:hover {
  background: hsl(16, 86%, 59%);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #d8d6cc;
}
#consentPanel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #fff;
  color: #2a2a2a;
  border-top: 3px solid hsl(40, 66%, 35%);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  font-family: 'Source Sans Pro', sans-serif;
  max-height: 60vh;
  overflow-y: auto;
  padding: 20px 0;
}
#consentPanel h6 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(68, 65%, 21%);
  font-weight: 700;
  margin-bottom: 8px;
}
#consentPanel p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}
#consentPanel .cookie-cat {
  font-size: 0.85rem;
  margin-bottom: 6px;
}
#consentPanel .cookie-cat strong {
  color: hsl(40, 66%, 35%);
}
.btn-consent {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.9rem;
  border: none;
  transition: all 0.2s ease;
  width: 100%;
}
.btn-accept-all {
  background: hsl(40, 66%, 35%);
  color: #fff;
}
.btn-accept-all:hover {
  background: hsl(16, 86%, 59%);
  color: #fff;
}
.btn-reject-optional {
  background: hsl(68, 65%, 21%);
  color: #fff;
}
.btn-reject-optional:hover {
  background: hsl(16, 86%, 59%);
  color: #fff;
}
.btn-manage {
  display: inline-block;
  text-align: center;
  color: hsl(68, 65%, 21%);
  text-decoration: underline;
  font-size: 0.85rem;
  padding: 10px 0;
}
.btn-manage:hover {
  color: hsl(16, 86%, 59%);
}

.thankyou-section {
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(135deg, hsl(40, 66%, 97%) 0%, hsl(68, 65%, 96%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 3rem 1rem;
  }

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

  .thankyou-card h1,
  .thankyou-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
  }

  .success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: hsl(16, 86%, 95%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pop-in 0.5s ease-out;
  }

  .success-icon-wrapper svg {
    width: 55px;
    height: 55px;
    stroke: hsl(16, 86%, 59%);
  }

  @keyframes pop-in {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
  }

  .thankyou-heading {
    color: hsl(68, 65%, 21%);
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }

  .thankyou-text {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }

  .thankyou-note {
    background: hsl(40, 66%, 96%);
    border-left: 4px solid hsl(40, 66%, 35%);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin: 1.75rem 0;
    text-align: left;
  }

  .thankyou-note p {
    margin-bottom: 0.4rem;
    color: hsl(68, 65%, 21%);
    font-size: 0.98rem;
  }

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

  .btn-home {
    background-color: hsl(40, 66%, 35%);
    border-color: hsl(40, 66%, 35%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2.25rem;
    border-radius: 0.5rem;
    transition: all 0.25s ease;
  }

  .btn-home:hover,
  .btn-home:focus {
    background-color: hsl(16, 86%, 59%);
    border-color: hsl(16, 86%, 59%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2rem 1.25rem;
    }

    .thankyou-heading {
      font-size: 1.5rem;
    }

    .success-icon-wrapper {
      width: 80px;
      height: 80px;
    }

    .success-icon-wrapper svg {
      width: 44px;
      height: 44px;
    }
  }

.hero-vas {
  background-color: #f8f7f3;
  padding: 100px 0;
}
.hero-vas .hero-col {
  max-width: 720px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.hero-vas h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #222;
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}
.hero-vas h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: hsl(40, 66%, 35%);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.hero-vas .hero-rule {
  width: 90px;
  height: 3px;
  background-color: hsl(16, 86%, 59%);
  border: none;
  margin: 0 0 1.6rem 0;
  border-radius: 3px;
}
.hero-vas p.hero-desc {
  font-family: 'Source Sans Pro', sans-serif;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.hero-vas .btn-hero {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background-color: hsl(16, 86%, 59%);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.25s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.hero-vas .btn-hero:hover {
  background-color: hsl(40, 66%, 35%);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 576px) {
  .hero-vas {
    padding: 64px 0;
  }
  .hero-vas h1 {
    font-size: 2rem;
  }
  .hero-vas h2 {
    font-size: 1.1rem;
  }
}

#about .about-section {
  background: #ffffff;
  color: #262626;
  font-family: 'Source Sans Pro', sans-serif;
  padding: 96px 0;
}
#about .about-section .container-narrow {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}
#about .about-section h1, #about .about-section h2, #about .about-section h3 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(68, 65%, 21%);
}
#about .about-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
#about .about-section .lead-line {
  color: hsl(40, 66%, 35%);
  font-weight: 600;
  margin-bottom: 48px;
  font-size: 1.05rem;
}
#about .about-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 56px;
  margin-bottom: 18px;
}
#about .about-section p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
#about .about-section .about-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  margin: 40px 0;
  display: block;
}
#about .about-section ul.values-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
#about .about-section ul.values-list li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid #e6e0d4;
  position: relative;
  line-height: 1.6;
}
#about .about-section ul.values-list li:last-child {
  border-bottom: none;
}
#about .about-section ul.values-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: hsl(16, 86%, 59%);
  font-weight: 700;
}
#about .about-section .values-list strong {
  color: hsl(68, 65%, 21%);
}
#about .team-block {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #e6e0d4;
}
#about .team-block h2 {
  margin-top: 0;
}
#about .team-card {
  background: #f8f6f0;
  border-radius: 8px;
  padding: 22px 24px;
  margin-bottom: 16px;
  border-left: 4px solid hsl(40, 66%, 35%);
}
#about .team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 2px;
  color: #262626;
}
#about .team-card .role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: hsl(16, 86%, 59%);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  display: block;
}
#about .team-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #4a4a4a;
}
@media (max-width: 576px) {
  #about .about-section { padding: 64px 0; }
  #about .about-section h1 { font-size: 1.7rem; }
  #about .about-section h2 { font-size: 1.3rem; }
}

.services-column {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 20px;
  background-color: #ffffff;
  color: #222222;
}

.services-column h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(40, 66%, 35%);
  font-size: 2rem;
  margin-bottom: 16px;
}

.services-column .lead-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.05rem;
  color: #333333;
  margin-bottom: 48px;
  line-height: 1.7;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid #e0ddd3;
}

.service-row:first-of-type {
  border-top: 1px solid #e0ddd3;
}

.service-main {
  flex: 1;
}

.service-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: hsl(68, 65%, 21%);
  margin-bottom: 6px;
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.service-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(16, 86%, 59%);
  font-size: 1rem;
  min-width: 24px;
}

.service-desc {
  font-family: 'Source Sans Pro', sans-serif;
  color: #444444;
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.service-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(40, 66%, 35%);
  font-size: 1.05rem;
  white-space: nowrap;
  padding-top: 2px;
  text-align: right;
}

.services-note {
  margin-top: 48px;
  padding: 20px 24px;
  background-color: #f8f7f2;
  border-radius: 8px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.92rem;
  color: #444444;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .service-row {
    flex-direction: column;
    gap: 8px;
  }
  .service-price {
    text-align: left;
  }
}

#value {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #fdfcfa;
  padding: 96px 0;
}
#value .section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
#value h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(68, 65%, 21%);
  font-size: 2rem;
  margin-bottom: 16px;
}
#value .section-heading p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
}
#value .value-card {
  background-color: #fff;
  border: 1px solid #e9e4da;
  border-radius: 8px;
  padding: 32px 26px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#value .value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: hsl(16, 86%, 59%);
}
#value .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(40, 66%, 35%);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
#value .value-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 12px;
}
#value .value-card p {
  color: #444;
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #value { padding: 64px 0; }
  #value h2 { font-size: 1.6rem; }
}

#faq {
  background: #ffffff;
  padding: 96px 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #2a2a2a;
}
#faq .faq-column {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#faq h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(68, 65%, 21%);
  font-size: 2rem;
  margin-bottom: 16px;
}
#faq .faq-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3a3a3a;
  margin-bottom: 48px;
}
#faq .accordion-item {
  border: 1px solid #e4dfd4;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
#faq .accordion-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: hsl(40, 66%, 35%);
  background-color: #fdfcfa;
  border-radius: 8px;
  padding: 18px 20px;
}
#faq .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: hsl(40, 66%, 35%);
  box-shadow: none;
}
#faq .accordion-button:focus {
  box-shadow: 0 0 0 2px hsl(16, 86%, 59%, 0.4);
}
#faq .accordion-button::after {
  filter: none;
}
#faq .accordion-body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #3a3a3a;
  background-color: #fffdf9;
  padding: 20px;
}
#faq .accordion-body a {
  color: hsl(16, 86%, 59%);
  text-decoration: underline;
}

#testimonials {
  background: #f8f9fa;
  padding: 96px 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #2b2b2b;
}
#testimonials .inner-col {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#testimonials h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(40, 66%, 35%);
  font-size: 2rem;
  margin-bottom: 14px;
}
#testimonials .lead-text {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 56px;
  line-height: 1.7;
}
#testimonials .review-block {
  border-top: 1px solid #dcdcdc;
  padding: 28px 0;
}
#testimonials .review-block:first-of-type {
  border-top: none;
  padding-top: 0;
}
#testimonials .review-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
#testimonials .reviewer-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsl(68, 65%, 21%);
  font-size: 1.02rem;
}
#testimonials .reviewer-loc {
  font-size: 0.88rem;
  color: #6b6b6b;
}
#testimonials .stars {
  color: hsl(16, 86%, 59%);
  font-size: 0.95rem;
  letter-spacing: 1px;
  white-space: nowrap;
}
#testimonials .stars .empty {
  color: #d4c9b8;
}
#testimonials .review-text {
  font-size: 1rem;
  line-height: 1.72;
  color: #333;
  margin: 0;
}
#testimonials .review-text.short {
  font-style: italic;
}
#testimonials .tag-line {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: hsl(40, 66%, 35%);
  border: 1px solid hsl(40, 66%, 35%);
  border-radius: 8px;
  padding: 2px 10px;
}
#testimonials .summary-line {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid #dcdcdc;
  font-size: 0.92rem;
  color: #6b6b6b;
  text-align: center;
}
@media (max-width: 576px) {
  #testimonials { padding: 64px 0; }
  #testimonials h2 { font-size: 1.6rem; }
}

#contacts .contacts-section {
  background: #f8f9fa;
  padding: 96px 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #2b2b2b;
}
#contacts .contacts-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#contacts .contacts-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(68, 65%, 21%);
  font-size: 2rem;
  margin-bottom: 16px;
}
#contacts .contacts-inner > p.lead-text {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 48px;
  line-height: 1.7;
}
#contacts .contact-info-block {
  background: #fff;
  border: 1px solid #e4e0d8;
  border-radius: 8px;
  padding: 28px 30px;
  margin-bottom: 48px;
}
#contacts .contact-info-block dl {
  margin: 0;
}
#contacts .contact-info-block dt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsl(40, 66%, 35%);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 18px;
}
#contacts .contact-info-block dt:first-child {
  margin-top: 0;
}
#contacts .contact-info-block dd {
  margin: 4px 0 0 0;
  font-size: 1.02rem;
  color: #2b2b2b;
}
#contacts .contact-info-block a {
  color: hsl(16, 86%, 40%);
  text-decoration: underline;
}
#contacts .contact-info-block a:hover {
  color: hsl(16, 86%, 30%);
}
#contacts .find-us-line {
  font-size: 0.95rem;
  color: #555;
  margin-top: 6px;
}
#contacts .find-us-line a {
  color: hsl(40, 66%, 35%);
  font-weight: 600;
  text-decoration: underline;
}
#contacts .contact-form-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: hsl(68, 65%, 21%);
  margin-bottom: 20px;
}
#contacts .contacts-form label {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 6px;
  display: block;
}
#contacts .contacts-form .form-control {
  border: 1px solid #ccc4b3;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 1rem;
  color: #222;
  background: #fff;
  margin-bottom: 20px;
}
#contacts .contacts-form .form-control:focus {
  border-color: hsl(40, 66%, 35%);
  box-shadow: 0 0 0 0.2rem hsla(40, 66%, 35%, 0.15);
}
#contacts .contacts-form textarea.form-control {
  min-height: 130px;
  resize: vertical;
}
#contacts .btn-submit-contact {
  background: hsl(16, 86%, 59%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 7px;
  padding: 12px 34px;
  font-size: 1rem;
  transition: background 0.2s ease;
}
#contacts .btn-submit-contact:hover {
  background: hsl(16, 86%, 47%);
  color: #fff;
}
#contacts .required-note {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  #contacts .contacts-section { padding: 64px 0; }
  #contacts .contact-info-block { padding: 22px 18px; }
}

#legal-notice {
  background-color: #f8f9fa;
  padding: 96px 20px;
  font-family: 'Source Sans Pro', sans-serif;
  color: #333;
}
#legal-notice .disclaimer-wrap {
  max-width: 740px;
  margin: 0 auto;
}
#legal-notice .disclaimer-box {
  background-color: #ffffff;
  border: 1px solid #e0ddd5;
  border-radius: 8px;
  padding: 40px 36px;
}
#legal-notice .icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
#legal-notice .icon-row i {
  font-size: 1.8rem;
  color: hsl(40, 66%, 35%);
}
#legal-notice h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsl(68, 65%, 21%);
  margin: 0;
  font-size: 1.6rem;
}
#legal-notice p {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 0;
}

#about-page {
  font-family: 'Source Sans Pro', sans-serif;
  color: #2b2b2b;
  background-color: #ffffff;
  padding: 96px 0;
}
#about-page .about-container {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}
#about-page h1, #about-page h2, #about-page h3 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(68, 65%, 21%);
  margin-top: 56px;
  margin-bottom: 20px;
}
#about-page h1 {
  font-size: 2.1rem;
  margin-top: 0;
}
#about-page h2 {
  font-size: 1.5rem;
}
#about-page p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
#about-page .lead-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #3a3a3a;
}
#about-page img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin: 32px 0;
}
#about-page ol, #about-page ul {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 24px;
  padding-left: 22px;
}
#about-page ol li, #about-page ul li {
  margin-bottom: 10px;
}
#about-page .values-list {
  list-style: none;
  padding-left: 0;
}
#about-page .values-list li {
  border-left: 3px solid hsl(16, 86%, 59%);
  padding: 6px 0 6px 16px;
  margin-bottom: 16px;
}
#about-page .values-list strong {
  color: hsl(40, 66%, 35%);
  font-family: 'Montserrat', sans-serif;
}
#about-page .team-section {
  margin-top: 72px;
  border-top: 1px solid #e2ddd0;
  padding-top: 48px;
}
#about-page .team-card {
  background-color: #f8f7f3;
  border-radius: 8px;
  padding: 24px 26px;
  margin-bottom: 20px;
}
#about-page .team-card h3 {
  margin-top: 0;
  margin-bottom: 4px;
  font-size: 1.2rem;
  color: hsl(68, 65%, 21%);
}
#about-page .team-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  color: hsl(16, 86%, 59%);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
#about-page .team-card p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #3a3a3a;
}
#about-page .cta-block {
  margin-top: 80px;
  text-align: center;
  padding: 40px 24px;
  background-color: #f8f7f3;
  border-radius: 8px;
}
#about-page .cta-block p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
#about-page .btn-cta {
  display: inline-block;
  background-color: hsl(16, 86%, 59%);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.05rem;
}
#about-page .btn-cta:hover {
  background-color: hsl(16, 86%, 49%);
  color: #ffffff;
}
#about-page a {
  color: hsl(40, 66%, 35%);
}
@media (max-width: 576px) {
  #about-page {
    padding: 64px 0;
  }
  #about-page h1 {
    font-size: 1.7rem;
  }
}

#contact-body {
  background: #fdfcf9;
  color: #2b2a26;
  font-family: 'Source Sans Pro', sans-serif;
  padding: 96px 0;
}
#contact-body .narrow-col {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#contact-body h1,
#contact-body h2,
#contact-body h3 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(68, 65%, 21%);
}
#contact-body h1 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
#contact-body p {
  line-height: 1.7;
  font-size: 1.05rem;
}
#contact-body .lead-text {
  margin-bottom: 56px;
}
#contact-body .info-block {
  margin-bottom: 64px;
  border-top: 1px solid #e2ddd1;
  padding-top: 40px;
}
#contact-body dl.contact-details {
  display: grid;
  grid-template-columns: 140px 1fr;
  row-gap: 12px;
  column-gap: 16px;
  margin-bottom: 24px;
}
#contact-body dl.contact-details dt {
  font-weight: 600;
  color: hsl(40, 66%, 35%);
}
#contact-body dl.contact-details dd {
  margin: 0;
}
#contact-body a {
  color: hsl(16, 86%, 45%);
  text-decoration: underline;
}
#contact-body a:hover {
  color: hsl(16, 86%, 35%);
}
#contact-body .find-us {
  font-size: 0.98rem;
  color: #4a4a44;
  margin-top: 8px;
}
#contact-body .form-section {
  border-top: 1px solid #e2ddd1;
  padding-top: 40px;
}
#contact-body .form-label {
  font-weight: 600;
  color: #2b2a26;
}
#contact-body .form-control {
  border-radius: 8px;
  border: 1px solid #cfc7b4;
  padding: 10px 14px;
}
#contact-body .form-control:focus {
  border-color: hsl(40, 66%, 35%);
  box-shadow: 0 0 0 0.2rem hsla(40, 66%, 35%, 0.15);
}
#contact-body textarea.form-control {
  min-height: 140px;
}
#contact-body .btn-submit {
  background-color: hsl(16, 86%, 59%);
  border: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
#contact-body .btn-submit:hover {
  background-color: hsl(16, 86%, 45%);
  color: #fff;
}
#contact-body .reply-note {
  font-size: 0.95rem;
  color: #4a4a44;
  margin-top: 16px;
}
#contact-body .cta-line {
  margin-top: 72px;
  border-top: 1px solid #e2ddd1;
  padding-top: 40px;
  text-align: center;
}
#contact-body .cta-line a.btn-cta {
  display: inline-block;
  background-color: hsl(40, 66%, 35%);
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 12px 34px;
  border-radius: 8px;
}
#contact-body .cta-line a.btn-cta:hover {
  background-color: hsl(40, 66%, 25%);
}
@media (max-width: 576px) {
  #contact-body dl.contact-details {
    grid-template-columns: 1fr;
  }
  #contact-body dl.contact-details dt {
    margin-top: 8px;
  }
}
