@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

:root {
  --primary: hsl(106, 30%, 35%);
  --secondary: hsl(112, 30%, 21%);
  --accent: hsl(98, 50%, 43%);
}

body {
  font-family: 'Libre Baskerville', serif;
  background-color: #ffffff;
  color: #222222;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
}
* {
  border-radius: 0 !important;
}
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}
.navbar-brand {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.navbar-brand:hover {
  color: var(--primary);
}
.navbar-nav .nav-link {
  font-family: 'Quicksand', sans-serif;
  color: #222222;
  font-weight: 600;
  padding: 0.5rem 1rem;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--primary);
}
.navbar-toggler {
  border-color: var(--primary);
}
.navbar-toggler-icon {
  filter: none;
}

footer {
    background: hsl(112, 30%, 21%);
    color: #f5f5f5;
    font-family: 'Libre Baskerville', serif;
    padding: 48px 0 24px;
    border-radius: 0;
  }
  footer h5 {
    font-family: 'Quicksand', sans-serif;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
  }
  footer a {
    color: #e0e0e0;
    text-decoration: none;
  }
  footer a:hover {
    color: hsl(98, 50%, 63%);
    text-decoration: underline;
  }
  footer p, footer li {
    color: #dcdcdc;
    font-size: 0.95rem;
  }
  .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-list li {
    margin-bottom: 8px;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #f5f5f5;
    color: #f5f5f5;
    margin-right: 10px;
    font-size: 1.1rem;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .footer-social a:hover {
    background: hsl(98, 50%, 43%);
    border-color: hsl(98, 50%, 43%);
    color: #1a1a1a;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 32px;
    padding-top: 16px;
    font-size: 0.85rem;
    color: #c9c9c9;
  }

  #consentPanel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: #ffffff;
    color: #222222;
    border-top: 3px solid hsl(106, 30%, 35%);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    font-family: 'Libre Baskerville', serif;
    max-height: 60vh;
    overflow-y: auto;
    padding: 16px 0;
  }
  #consentPanel h6 {
    font-family: 'Quicksand', sans-serif;
    color: hsl(112, 30%, 21%);
    font-weight: 600;
    margin-bottom: 8px;
  }
  #consentPanel p, #consentPanel li {
    font-size: 0.85rem;
    color: #333333;
    margin-bottom: 6px;
  }
  #consentPanel ul {
    padding-left: 18px;
    margin-bottom: 10px;
  }
  .consent-btn {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 0.85rem;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    width: 100%;
  }
  .btn-consent-accept {
    background: hsl(106, 30%, 35%);
    color: #ffffff;
    border-color: hsl(106, 30%, 35%);
  }
  .btn-consent-accept:hover {
    background: hsl(98, 50%, 43%);
    border-color: hsl(98, 50%, 43%);
    color: #1a1a1a;
  }
  .btn-consent-reject {
    background: #ffffff;
    color: hsl(112, 30%, 21%);
    border-color: hsl(112, 30%, 21%);
  }
  .btn-consent-reject:hover {
    background: hsl(112, 30%, 21%);
    color: #ffffff;
  }
  .consent-manage {
    font-size: 0.8rem;
    color: hsl(106, 30%, 35%);
    text-decoration: underline;
  }

#about-page {
  font-family: 'Libre Baskerville', serif;
  color: #2a2a2a;
  background: #ffffff;
  padding: 52px 20px;
}
#about-page .column {
  max-width: 740px;
  margin: 0 auto;
}
#about-page h1, #about-page h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(112, 30%, 21%);
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 18px;
}
#about-page h1 {
  font-size: 2.1rem;
  margin-top: 0;
}
#about-page h2 {
  font-size: 1.5rem;
}
#about-page p {
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 1.02rem;
}
#about-page .lead-text {
  font-size: 1.1rem;
  color: hsl(106, 30%, 35%);
  font-style: italic;
  margin-bottom: 30px;
}
#about-page img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
#about-page .img-block {
  margin: 32px 0;
}
#about-page .img-caption {
  font-size: 0.85rem;
  color: #555;
  margin-top: 8px;
  font-style: italic;
}
#about-page ol.steps {
  padding-left: 20px;
  margin-bottom: 24px;
}
#about-page ol.steps li {
  margin-bottom: 14px;
  line-height: 1.7;
}
#about-page ul.values {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}
#about-page ul.values li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 14px;
  line-height: 1.7;
}
#about-page ul.values li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: hsl(98, 50%, 43%);
}
#about-page .divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 48px 0;
}
#about-page .cta-box {
  background: hsl(112, 30%, 21%);
  color: #ffffff;
  padding: 32px 28px;
  margin-top: 48px;
  text-align: center;
}
#about-page .cta-box h2 {
  color: #ffffff;
  margin-top: 0;
}
#about-page .cta-box p {
  color: #f0f0f0;
}
#about-page .cta-box a.btn-cta {
  display: inline-block;
  background: hsl(98, 50%, 43%);
  color: #14210f;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 28px;
  margin-top: 12px;
  border-radius: 0;
}
#about-page .cta-box a.btn-cta:hover {
  background: hsl(106, 30%, 35%);
  color: #ffffff;
}
@media (max-width: 576px) {
  #about-page { padding: 40px 16px; }
  #about-page h1 { font-size: 1.7rem; }
}

#contact-page {
  font-family: 'Libre Baskerville', serif;
  background-color: #ffffff;
  color: #222222;
  padding: 52px 0;
}
#contact-page h1, #contact-page h2, #contact-page h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(112, 30%, 21%);
}
#contact-page .narrow-column {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#contact-page p {
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
#contact-page .intro-text {
  font-size: 1.05rem;
  margin-bottom: 40px;
}
#contact-page hr {
  border-top: 1px solid #ddd;
  margin: 40px 0;
}
#contact-page .info-block dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  row-gap: 10px;
  column-gap: 12px;
  margin-bottom: 24px;
}
#contact-page .info-block dt {
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
  color: hsl(106, 30%, 35%);
}
#contact-page .info-block dd {
  margin: 0;
}
#contact-page a {
  color: hsl(106, 30%, 35%);
  text-decoration: underline;
}
#contact-page a:hover {
  color: hsl(98, 50%, 43%);
}
#contact-page .find-us {
  font-size: 0.95rem;
  color: #444;
  margin-top: 6px;
}
#contact-page .form-label {
  font-family: 'Quicksand', sans-serif;
  color: hsl(112, 30%, 21%);
  font-weight: 600;
}
#contact-page .form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  padding: 10px 12px;
}
#contact-page .form-control:focus {
  border-color: hsl(106, 30%, 35%);
  box-shadow: 0 0 0 0.2rem hsla(106, 30%, 35%, 0.15);
}
#contact-page .btn-send {
  border-radius: 0;
  background-color: hsl(106, 30%, 35%);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}
#contact-page .btn-send:hover {
  background-color: hsl(98, 50%, 43%);
  color: #ffffff;
}
#contact-page .cta-line {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #ddd;
  text-align: center;
}
#contact-page .cta-line a.btn-cta {
  display: inline-block;
  background-color: hsl(112, 30%, 21%);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 30px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: 0;
}
#contact-page .cta-line a.btn-cta:hover {
  background-color: hsl(98, 50%, 43%);
}
#contact-page .reply-note {
  font-size: 0.92rem;
  color: #555;
  margin-top: -6px;
  margin-bottom: 36px;
}



.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(106, 30%, 96%) 0%, hsl(98, 50%, 95%) 100%);
  padding: 2rem 1rem;
  font-family: 'Libre Baskerville', serif;
}

.thankyou-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 3rem 2.5rem;
  max-width: 640px;
  width: 100%;
  text-align: center;
  box-shadow: 0 1rem 3rem rgba(23, 60, 20, 0.15);
  border-top: 6px solid hsl(98, 50%, 43%);
}

.thankyou-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  background: hsl(106, 30%, 35%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px hsla(98, 50%, 43%, 0.15);
  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-wrapper svg {
  width: 52px;
  height: 52px;
  stroke: #ffffff;
}

.thankyou-heading {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(112, 30%, 21%);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.thankyou-subheading {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(98, 50%, 43%);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.thankyou-message {
  color: #4a5548;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.thankyou-note {
  background: hsl(106, 30%, 96%);
  border-left: 4px solid hsl(98, 50%, 43%);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin: 1.75rem 0;
  color: hsl(112, 30%, 21%);
  font-size: 0.98rem;
  text-align: left;
}

.thankyou-note ul {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.thankyou-note li {
  margin-bottom: 0.4rem;
}

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

.btn-home {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  background-color: hsl(106, 30%, 35%);
  border-color: hsl(106, 30%, 35%);
  color: #ffffff;
  padding: 0.75rem 2.25rem;
  border-radius: 50px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px hsla(106, 30%, 35%, 0.35);
}

.btn-home:hover,
.btn-home:focus {
  background-color: hsl(112, 30%, 21%);
  border-color: hsl(112, 30%, 21%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px hsla(112, 30%, 21%, 0.4);
}

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

.hero-editorial {
  background-color: #f8f9fa;
  color: #222;
  padding: 64px 0 48px;
}
.hero-editorial .hero-col {
  max-width: 720px;
  margin: 0;
  padding-left: 24px;
}
.hero-editorial h1 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(112, 30%, 21%);
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.hero-editorial h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  color: hsl(106, 30%, 35%);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.hero-rule {
  border: none;
  border-top: 2px solid hsl(98, 50%, 43%);
  width: 90px;
  margin: 0 0 24px;
}
.hero-editorial p {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 28px;
  max-width: 600px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: hsl(106, 30%, 35%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border: 2px solid hsl(106, 30%, 35%);
  border-radius: 0;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.hero-cta:hover {
  background-color: hsl(98, 50%, 43%);
  border-color: hsl(98, 50%, 43%);
  color: #fff;
}
@media (max-width: 576px) {
  .hero-editorial h1 {
    font-size: 2rem;
  }
  .hero-editorial .hero-col {
    padding-left: 12px;
  }
}

#who-we-are {
  background: #ffffff;
  color: #222222;
  padding: 52px 0;
  font-family: 'Libre Baskerville', serif;
}
#who-we-are .col-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#who-we-are h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(112, 30%, 21%);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 28px;
  border-radius: 0;
}
#who-we-are h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(106, 30%, 35%);
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  border-radius: 0;
}
#who-we-are p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #333333;
}
#who-we-are img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  margin: 28px 0;
  display: block;
}
#who-we-are figcaption {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.85rem;
  color: #555555;
  margin-top: -18px;
  margin-bottom: 28px;
  font-style: italic;
}
#who-we-are ul {
  padding-left: 20px;
  margin-bottom: 18px;
}
#who-we-are ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 8px;
}
#who-we-are strong {
  color: hsl(112, 30%, 21%);
}

.services-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 52px 20px;
  background: #ffffff;
  color: #222222;
  font-family: 'Libre Baskerville', serif;
}

.services-section h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(112, 30%, 21%);
  font-size: 2rem;
  font-weight: 600;
  border-radius: 0;
  margin-bottom: 12px;
}

.services-section .lead-text {
  color: #333333;
  margin-bottom: 40px;
  font-size: 1.05rem;
  line-height: 1.7;
}

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

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

.service-number {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(98, 50%, 43%);
  font-size: 1.1rem;
  min-width: 28px;
  flex-shrink: 0;
}

.service-body {
  flex-grow: 1;
}

.service-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(112, 30%, 21%);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.service-desc {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.service-price {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(106, 30%, 35%);
  font-size: 1.05rem;
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
  padding-top: 2px;
}

.services-note {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #dcdcdc;
  color: #333333;
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 576px) {
  .service-row {
    flex-wrap: wrap;
  }
  .service-price {
    width: 100%;
    text-align: left;
    margin-top: 6px;
    padding-left: 44px;
  }
}

#reviews {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Libre Baskerville', serif;
  color: #222;
}
#reviews .col-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
}
#reviews h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(112, 30%, 21%);
  font-weight: 600;
  margin-bottom: 8px;
  border-radius: 0;
}
#reviews .intro {
  color: #333;
  margin-bottom: 40px;
  font-size: 0.98rem;
  line-height: 1.7;
}
#reviews .review-item {
  border-top: 1px solid #ddd;
  padding: 24px 0;
  border-radius: 0;
}
#reviews .review-item:last-child {
  border-bottom: 1px solid #ddd;
}
#reviews .review-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}
#reviews .review-name {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(112, 30%, 21%);
  font-size: 1.02rem;
}
#reviews .review-location {
  font-size: 0.85rem;
  color: #555;
  font-style: italic;
}
#reviews .review-stars {
  color: hsl(98, 50%, 43%);
  font-size: 0.95rem;
  letter-spacing: 1px;
}
#reviews .review-stars .empty {
  color: #ccc;
}
#reviews .review-text {
  font-size: 0.97rem;
  line-height: 1.75;
  color: #2a2a2a;
  margin: 0;
}
#reviews .review-meta {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #777;
}

#advantages {
  background-color: #ffffff;
  padding: 52px 0;
  font-family: 'Libre Baskerville', serif;
  color: #222222;
}

#advantages .col-container {
  max-width: 760px;
  margin: 0 auto;
}

#advantages h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(112, 30%, 21%);
  margin-bottom: 12px;
  font-size: 1.9rem;
}

#advantages .intro-text {
  margin-bottom: 40px;
  color: #333333;
  line-height: 1.7;
}

#advantages .adv-item {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 24px 22px;
  height: 100%;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

#advantages .adv-item:hover {
  background-color: hsl(106, 30%, 35%);
  border-color: hsl(112, 30%, 21%);
  transform: translateY(-4px);
}

#advantages .adv-item:hover h3,
#advantages .adv-item:hover p,
#advantages .adv-item:hover i {
  color: #ffffff;
}

#advantages .adv-item i {
  font-size: 1.8rem;
  color: hsl(98, 50%, 43%);
  margin-bottom: 14px;
  display: block;
  transition: color 0.25s ease;
}

#advantages .adv-item h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: hsl(112, 30%, 21%);
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

#advantages .adv-item p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #333333;
  margin-bottom: 0;
  transition: color 0.25s ease;
}

#contact {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Libre Baskerville', serif;
  color: #222;
}
#contact .container {
  max-width: 760px;
}
#contact h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(112, 30%, 21%);
  font-weight: 600;
  margin-bottom: 16px;
}
#contact p.lead-text {
  margin-bottom: 40px;
  font-size: 1rem;
  color: #333;
}
#contact .info-block {
  margin-bottom: 40px;
}
#contact .info-block dt {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(106, 30%, 35%);
  margin-top: 16px;
}
#contact .info-block dd {
  margin-left: 0;
  margin-bottom: 4px;
}
#contact .info-block a {
  color: hsl(112, 30%, 21%);
  text-decoration: underline;
}
#contact .info-block a:hover {
  color: hsl(98, 50%, 43%);
}
#contact .map-link {
  font-size: 0.95rem;
  display: inline-block;
  margin-top: 4px;
}
#contact form {
  border-top: 1px solid #ddd;
  padding-top: 40px;
}
#contact .form-label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #222;
}
#contact .form-control {
  border-radius: 0;
  border: 1px solid #999;
  font-family: 'Libre Baskerville', serif;
}
#contact .form-control:focus {
  border-color: hsl(106, 30%, 35%);
  box-shadow: none;
}
#contact .btn-submit {
  background-color: hsl(106, 30%, 35%);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 12px 32px;
}
#contact .btn-submit:hover {
  background-color: hsl(98, 50%, 43%);
  color: #fff;
}
#contact .reply-note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 16px;
}

#important {
  background-color: #f5f5f5;
  padding: 52px 0;
  font-family: 'Libre Baskerville', serif;
  color: #2b2b2b;
}
#important .disclaimer-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#important h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(112, 30%, 21%);
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
#important .bi-info-circle-fill {
  color: hsl(98, 50%, 43%);
  font-size: 1.6rem;
  flex-shrink: 0;
}
#important p {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  border-left: 3px solid hsl(106, 30%, 35%);
  padding-left: 20px;
  background-color: #ffffff;
  padding: 20px 24px;
  border-radius: 0;
}
