:root {
  --primary: hsl(17, 16%, 33%);
  --secondary: hsl(45, 16%, 19%);
  --accent: hsl(353, 32%, 61%);
  --surface: #f4f4f1;
}

body{
  font-family: 'Open Sans', sans-serif;
  background-color: var(--surface);
  color: var(--secondary);
}
h1, h2, h3, h4, h5, h6{
  font-family: 'Roboto', sans-serif;
  color: var(--secondary);
}
.navbar{
  background-color: #f7f6f3;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.navbar-brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--secondary) !important;
}
.navbar-brand img{
  border-radius: 16px;
}
.nav-link{
  color: var(--primary) !important;
  font-weight: 600;
  padding: 8px 16px !important;
}
.nav-link:hover{
  color: var(--accent) !important;
}
.navbar-toggler{
  border-color: var(--primary) !important;
}
.navbar-toggler-icon{
  filter: none;
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(45, 16%, 19%) 0%, hsl(17, 16%, 33%) 100%);
    font-family: 'Open Sans', sans-serif;
    padding: 2rem 1rem;
  }

  .thank-you-section h1,
  .thank-you-section h2,
  .thank-you-section h3 {
    font-family: 'Roboto', sans-serif;
  }

  .thank-you-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 3rem 2rem;
    max-width: 640px;
    width: 100%;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25);
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: hsl(353, 32%, 61%, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn 0.5s ease-out 0.2s both;
  }

  @keyframes popIn {
    from {
      opacity: 0;
      transform: scale(0.5);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .success-icon-wrapper svg {
    width: 55px;
    height: 55px;
    color: hsl(353, 32%, 61%);
  }

  .thank-you-heading {
    color: hsl(17, 16%, 33%);
    font-weight: 700;
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }

  .thank-you-text {
    color: hsl(45, 16%, 19%);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }

  .info-box {
    background: hsl(45, 16%, 19%, 0.05);
    border-left: 4px solid hsl(353, 32%, 61%);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    text-align: left;
  }

  .info-box p {
    margin-bottom: 0.4rem;
    color: hsl(17, 16%, 33%);
    font-size: 0.98rem;
  }

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

  .info-box i {
    color: hsl(353, 32%, 61%);
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
  }

  .btn-primary-custom {
    background-color: hsl(17, 16%, 33%);
    border: none;
    color: #fff;
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
  }

  .btn-primary-custom:hover {
    background-color: hsl(353, 32%, 61%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem hsl(353, 32%, 61%, 0.35);
  }

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

    .thank-you-heading {
      font-size: 1.5rem;
    }

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

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

footer.eco-footer {
  background: hsl(45, 16%, 19%);
  color: #f4f4f1;
  padding: 80px 0 32px;
  font-family: 'Open Sans', sans-serif;
}
footer.eco-footer h5 {
  font-family: 'Roboto', sans-serif;
  color: #f4f4f1;
  margin-bottom: 18px;
}
footer.eco-footer p, footer.eco-footer a {
  color: #e4e1da;
}
footer.eco-footer a {
  text-decoration: none;
}
footer.eco-footer a:hover {
  color: hsl(353, 32%, 61%);
  text-decoration: underline;
}
footer.eco-footer .footer-links li {
  margin-bottom: 8px;
}
footer.eco-footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsl(17, 16%, 33%);
  color: #f4f4f1;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}
footer.eco-footer .social-icons a:hover {
  background: hsl(353, 32%, 61%);
  color: #fff;
}
footer.eco-footer hr {
  border-color: rgba(244,244,241,0.15);
  margin: 40px 0 20px;
}
footer.eco-footer .copyright {
  font-size: 0.9rem;
  color: #cfcbc2;
}

#consentBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: hsl(45, 16%, 19%);
  color: #f4f4f1;
  border-radius: 20px 20px 0 0;
  padding: 18px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Open Sans', sans-serif;
}
#consentBar h6 {
  font-family: 'Roboto', sans-serif;
  color: #f4f4f1;
  margin-bottom: 8px;
}
#consentBar p, #consentBar li {
  font-size: 0.88rem;
  color: #e4e1da;
  margin-bottom: 6px;
}
#consentBar .btn-eco-accept {
  background: hsl(353, 32%, 61%);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 10px 20px;
  transition: background 0.3s ease, transform 0.2s ease;
}
#consentBar .btn-eco-accept:hover {
  background: hsl(353, 32%, 45%);
  transform: translateY(-2px);
  color: #fff;
}
#consentBar .btn-eco-reject {
  background: hsl(17, 16%, 33%);
  border: none;
  color: #f4f4f1;
  font-weight: 600;
  border-radius: 12px;
  padding: 10px 20px;
  transition: background 0.3s ease, transform 0.2s ease;
}
#consentBar .btn-eco-reject:hover {
  background: hsl(17, 16%, 22%);
  transform: translateY(-2px);
  color: #fff;
}
#consentBar .btn-eco-manage {
  color: #e4e1da;
  text-decoration: underline;
  font-size: 0.85rem;
}
#consentBar .btn-eco-manage:hover {
  color: hsl(353, 32%, 61%);
}

#contact-page {
  background: #f4f4f1;
  padding: 96px 0;
  font-family: 'Open Sans', sans-serif;
  color: #2b2420;
}
#contact-page .container-narrow {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}
#contact-page h1, #contact-page h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(17, 16%, 33%);
}
#contact-page h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}
#contact-page p.lead-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 48px;
  color: #3a3229;
}
#contact-page .info-block {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 56px;
}
#contact-page .info-block h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
#contact-page dl.contact-list {
  margin: 0;
}
#contact-page dl.contact-list dt {
  font-weight: 600;
  color: hsl(17, 16%, 33%);
  margin-top: 16px;
}
#contact-page dl.contact-list dt:first-of-type {
  margin-top: 0;
}
#contact-page dl.contact-list dd {
  margin: 4px 0 0 0;
  color: #2b2420;
}
#contact-page dl.contact-list a {
  color: hsl(353, 32%, 61%);
  text-decoration: none;
  font-weight: 600;
}
#contact-page dl.contact-list a:hover {
  text-decoration: underline;
}
#contact-page .find-us {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e7e4de;
  font-size: 0.95rem;
  color: #3a3229;
}
#contact-page .find-us a {
  color: hsl(353, 32%, 61%);
  font-weight: 600;
  text-decoration: none;
}
#contact-page .find-us a:hover {
  text-decoration: underline;
}
#contact-page .form-block {
  background: hsl(45, 16%, 19%);
  border-radius: 20px;
  padding: 40px;
  color: #f4f4f1;
}
#contact-page .form-block h2 {
  color: #f4f4f1;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
#contact-page .form-block p {
  color: #d9d6cf;
  margin-bottom: 28px;
  line-height: 1.6;
}
#contact-page .form-label {
  color: #f4f4f1;
  font-weight: 600;
  margin-bottom: 6px;
}
#contact-page .form-control {
  background: #f4f4f1;
  border: 1px solid #6b5f52;
  border-radius: 12px;
  color: #2b2420;
  padding: 12px 14px;
  margin-bottom: 18px;
}
#contact-page .form-control:focus {
  border-color: hsl(353, 32%, 61%);
  box-shadow: 0 0 0 3px rgba(196, 122, 140, 0.25);
  background: #fff;
  color: #2b2420;
}
#contact-page textarea.form-control {
  min-height: 130px;
  resize: vertical;
}
#contact-page .btn-send {
  background: hsl(353, 32%, 61%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 32px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: background 0.2s ease;
}
#contact-page .btn-send:hover {
  background: hsl(353, 32%, 51%);
  color: #fff;
}
#contact-page .final-cta {
  text-align: center;
  margin-top: 64px;
}
#contact-page .final-cta p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #3a3229;
}
#contact-page .final-cta a.btn-cta {
  display: inline-block;
  background: hsl(17, 16%, 33%);
  color: #f4f4f1;
  padding: 14px 34px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
}
#contact-page .final-cta a.btn-cta:hover {
  background: hsl(353, 32%, 61%);
  color: #fff;
}
@media (max-width: 576px) {
  #contact-page { padding: 64px 0; }
  #contact-page .form-block { padding: 24px; }
  #contact-page .info-block { padding: 24px; }
  #contact-page h1 { font-size: 1.7rem; }
}

#faq-body {
  background-color: #f5f4f1;
  padding: 96px 0;
  font-family: 'Open Sans', sans-serif;
  color: hsl(45, 16%, 19%);
}
#faq-body .faq-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#faq-body h1 {
  font-family: 'Roboto', sans-serif;
  color: hsl(17, 16%, 33%);
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 2.2rem;
}
#faq-body .intro {
  margin-bottom: 56px;
  font-size: 1.05rem;
  line-height: 1.75;
}
#faq-body .intro p {
  margin-bottom: 16px;
}
#faq-body h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(17, 16%, 33%);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 64px 0 24px;
}
#faq-body .steps-list {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
  margin-bottom: 56px;
}
#faq-body .steps-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 52px;
  margin-bottom: 20px;
  line-height: 1.65;
}
#faq-body .steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: hsl(353, 32%, 61%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}
#faq-body .accordion-item {
  background-color: #ffffff;
  border: 1px solid #e4e1da;
  border-radius: 16px !important;
  margin-bottom: 14px;
  overflow: hidden;
}
#faq-body .accordion-button {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: hsl(45, 16%, 19%);
  background-color: #ffffff;
  border-radius: 16px;
  font-size: 1.02rem;
  padding: 20px 24px;
}
#faq-body .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: hsl(17, 16%, 33%);
  box-shadow: none;
}
#faq-body .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(353, 32%, 61%);
}
#faq-body .accordion-button::after {
  filter: none;
}
#faq-body .accordion-body {
  padding: 20px 24px 26px;
  line-height: 1.75;
  color: hsl(45, 16%, 19%);
  background-color: #fffdfb;
}
#faq-body .category-label {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: hsl(353, 32%, 61%);
  margin: 48px 0 12px;
  font-weight: 700;
}
#faq-body .cta-box {
  margin-top: 88px;
  padding: 40px 32px;
  background-color: hsl(17, 16%, 33%);
  border-radius: 20px;
  text-align: center;
}
#faq-body .cta-box h2 {
  color: #ffffff;
  margin: 0 0 12px;
}
#faq-body .cta-box p {
  color: #f0ece7;
  margin-bottom: 24px;
  line-height: 1.6;
}
#faq-body .cta-box a.btn {
  background-color: hsl(353, 32%, 61%);
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  display: inline-block;
}
#faq-body .cta-box a.btn:hover {
  background-color: hsl(353, 32%, 51%);
  color: #ffffff;
}
@media (max-width: 576px) {
  #faq-body { padding: 64px 0; }
  #faq-body h1 { font-size: 1.7rem; }
  #faq-body .accordion-button { font-size: 0.95rem; padding: 16px 18px; }
  #faq-body .accordion-body { padding: 16px 18px 20px; }
}

.hero-eco {
  background-color: #f4f4f1;
  padding: 112px 0 96px;
  font-family: 'Open Sans', sans-serif;
}

.hero-eco .container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: left;
}

.hero-eco .icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: hsl(17, 16%, 33%);
  color: #f7f6f3;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.hero-eco h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: hsl(45, 16%, 19%);
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-eco .thin-rule {
  width: 96px;
  height: 3px;
  background-color: hsl(353, 32%, 61%);
  border: none;
  margin: 0 0 24px 0;
  border-radius: 4px;
}

.hero-eco h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: hsl(17, 16%, 33%);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.hero-eco p.description {
  color: #3a352f;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-eco .btn-eco {
  background-color: hsl(353, 32%, 61%);
  color: #f7f6f3;
  border: none;
  padding: 14px 32px;
  border-radius: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.hero-eco .btn-eco:hover {
  background-color: hsl(17, 16%, 33%);
  color: #f7f6f3;
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .hero-eco {
    padding: 72px 0 64px;
  }
  .hero-eco h1 {
    font-size: 2rem;
  }
  .hero-eco h2 {
    font-size: 1.1rem;
  }
}

#about-us {
  background-color: #f4f4f1;
  padding: 96px 0;
  font-family: 'Open Sans', sans-serif;
  color: hsl(45, 16%, 19%);
}
#about-us .about-column {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#about-us h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(17, 16%, 33%);
  font-weight: 700;
  margin-bottom: 32px;
}
#about-us h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(17, 16%, 33%);
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
}
#about-us p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
#about-us figure {
  margin: 40px 0;
}
#about-us figure img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
#about-us figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: hsl(17, 16%, 33%);
  margin-top: 10px;
  font-style: italic;
}
#about-us ul.values-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
#about-us ul.values-list li {
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid rgba(17, 16%, 33%, 0.15);
  position: relative;
  line-height: 1.6;
}
#about-us ul.values-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: hsl(353, 32%, 61%);
  font-weight: 700;
}
#about-us ul.values-list li strong {
  color: hsl(17, 16%, 33%);
}
@media (max-width: 576px) {
  #about-us {
    padding: 64px 0;
  }
}

.services-section {
  background: #f7f6f3;
  padding: 96px 0;
}
.services-section .container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
.services-section h2.section-title {
  font-family: 'Roboto', sans-serif;
  color: hsl(17, 16%, 33%);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.services-section .intro-text {
  font-family: 'Open Sans', sans-serif;
  color: hsl(45, 16%, 19%);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 56px;
}
.services-list {
  margin: 0;
}
.services-list dt {
  font-family: 'Roboto', sans-serif;
  color: hsl(17, 16%, 33%);
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 0;
  border-top: 1px solid rgba(17, 16%, 33%, 0.15);
  padding-top: 32px;
}
.services-list dl:first-child dt,
.services-list .service-row:first-child dt {
  border-top: none;
}
.services-list dd {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.7;
  margin: 10px 0 0 0;
  padding-bottom: 32px;
}
.service-price {
  color: hsl(353, 32%, 61%);
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  white-space: nowrap;
  float: right;
  margin-left: 12px;
}
.service-row {
  border-top: 1px solid rgba(70, 60, 50, 0.15);
  padding: 32px 0;
}
.service-row:first-child {
  border-top: none;
  padding-top: 0;
}
.service-row h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(17, 16%, 33%);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.service-row p {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 576px) {
  .services-section { padding: 64px 0; }
  .service-price { float: none; display: block; margin-top: 6px; }
}

#faq {
  background-color: #f4f4f1;
  padding: 96px 0;
  font-family: 'Open Sans', sans-serif;
  color: hsl(45, 16%, 19%);
}
#faq .faq-column {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#faq h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(17, 16%, 33%);
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
#faq .faq-intro {
  text-align: center;
  margin-bottom: 48px;
  font-size: 1.05rem;
  color: hsl(45, 16%, 19%);
}
#faq .accordion-item {
  background-color: #fbfaf8;
  border: 1px solid rgba(17, 16%, 33%, 0.12);
  border-radius: 18px;
  margin-bottom: 16px;
  overflow: hidden;
}
#faq .accordion-button {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: hsl(17, 16%, 33%);
  background-color: #fbfaf8;
  padding: 20px 24px;
  border-radius: 18px;
}
#faq .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: hsl(17, 16%, 33%);
  box-shadow: none;
}
#faq .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(178, 100, 120, 0.25);
}
#faq .accordion-button::after {
  filter: none;
}
#faq .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
#faq .accordion-body {
  padding: 20px 24px 26px;
  color: hsl(45, 16%, 19%);
  line-height: 1.7;
  font-size: 0.98rem;
}
#faq .faq-footer-note {
  text-align: center;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(17, 16%, 33%, 0.15);
  color: hsl(17, 16%, 33%);
}
#faq .faq-footer-note a {
  color: hsl(353, 32%, 61%);
  font-weight: 600;
  text-decoration: none;
}
#faq .faq-footer-note a:hover {
  text-decoration: underline;
}
@media (max-width: 576px) {
  #faq { padding: 64px 0; }
  #faq .accordion-button { padding: 16px 18px; font-size: 0.95rem; }
  #faq .accordion-body { padding: 16px 18px 22px; }
}

#reviews {
  background: #f4f4f1;
  padding: 96px 0;
}
#reviews .section-heading {
  font-family: 'Roboto', sans-serif;
  color: hsl(17, 16%, 33%);
  font-weight: 700;
  margin-bottom: 16px;
}
#reviews .section-intro {
  font-family: 'Open Sans', sans-serif;
  color: hsl(45, 16%, 19%);
  max-width: 720px;
  margin: 0 auto 56px;
}
#reviews .review-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 26px;
  height: 100%;
  border: 1px solid #e8e6e1;
}
#reviews .review-card.accent-border {
  border-left: 4px solid hsl(353, 32%, 61%);
}
#reviews .review-card.compact {
  background: hsl(45, 16%, 19%);
  color: #f7f6f3;
}
#reviews .review-card.compact .review-name,
#reviews .review-card.compact .review-location,
#reviews .review-card.compact .review-text {
  color: #f7f6f3;
}
#reviews .stars {
  color: hsl(353, 32%, 61%);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
#reviews .review-card.compact .stars {
  color: hsl(353, 32%, 71%);
}
#reviews .review-text {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
#reviews .review-name {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: hsl(17, 16%, 33%);
  margin-bottom: 2px;
  font-size: 0.98rem;
}
#reviews .review-location {
  font-family: 'Open Sans', sans-serif;
  color: hsl(353, 32%, 61%);
  font-size: 0.85rem;
}
#reviews .review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
#reviews .review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: hsl(17, 16%, 33%);
  color: #f7f6f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
#reviews .d-flex.flex-column.h-100 {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  #reviews { padding: 64px 0; }
}

#contact {
  background-color: #f4f4f1;
  padding: 96px 20px;
  font-family: 'Open Sans', sans-serif;
  color: hsl(45, 16%, 19%);
}

#contact .contact-wrap {
  max-width: 760px;
  margin: 0 auto;
}

#contact h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(17, 16%, 33%);
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

#contact .intro-text {
  text-align: center;
  margin-bottom: 56px;
  font-size: 1.05rem;
  color: hsl(45, 16%, 19%);
}

#contact .info-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#contact .info-card dl {
  margin: 0;
}

#contact .info-card dt {
  font-family: 'Roboto', sans-serif;
  color: hsl(17, 16%, 33%);
  font-weight: 700;
  margin-top: 16px;
}

#contact .info-card dt:first-child {
  margin-top: 0;
}

#contact .info-card dd {
  margin-bottom: 4px;
  color: hsl(45, 16%, 19%);
}

#contact .info-card a {
  color: hsl(353, 32%, 61%);
  text-decoration: none;
  font-weight: 600;
}

#contact .info-card a:hover {
  text-decoration: underline;
}

#contact .map-line {
  font-size: 0.95rem;
  color: hsl(45, 16%, 19%);
  margin-top: 8px;
}

#contact .form-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#contact .form-card h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(17, 16%, 33%);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

#contact label {
  color: hsl(45, 16%, 19%);
  font-weight: 600;
  margin-bottom: 6px;
}

#contact .form-control {
  border-radius: 12px;
  border: 1px solid #d8d5cf;
  padding: 12px 16px;
  margin-bottom: 18px;
  background-color: #f7f6f3;
  color: hsl(45, 16%, 19%);
}

#contact .form-control:focus {
  border-color: hsl(353, 32%, 61%);
  box-shadow: 0 0 0 0.2rem rgba(196, 111, 132, 0.2);
  background-color: #fff;
}

#contact textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

#contact .btn-send {
  background-color: hsl(17, 16%, 33%);
  color: #f7f6f3;
  border: none;
  border-radius: 14px;
  padding: 13px 36px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  transition: background-color 0.2s ease;
}

#contact .btn-send:hover {
  background-color: hsl(353, 32%, 61%);
  color: #fff;
}

@media (max-width: 576px) {
  #contact {
    padding: 64px 14px;
  }
  #contact .form-card,
  #contact .info-card {
    padding: 24px;
  }
}

#important {
  background-color: #f7f6f3;
  padding: 96px 20px;
  font-family: 'Open Sans', sans-serif;
}
#important .disclaimer-box {
  max-width: 760px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #e5e2dc;
}
#important .icon-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
#important .icon-wrap i {
  font-size: 2rem;
  color: hsl(353, 32%, 61%);
}
#important h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(17, 16%, 33%);
  margin: 0;
  font-size: 1.8rem;
}
#important p {
  color: hsl(45, 16%, 19%);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}
