@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --primary: hsl(70, 38%, 34%);
  --secondary: hsl(84, 38%, 18%);
  --accent: hsl(250, 52%, 65%);
}

body {
  font-family: 'Playfair Display', serif;
  color: #222;
  background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Ubuntu', sans-serif;
}
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.3rem;
}
.navbar-brand:hover {
  color: var(--primary);
}
.nav-link {
  color: #222;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  padding: 0.5rem 1rem !important;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--primary);
}
.navbar-toggler {
  border-radius: 0;
  border-color: var(--secondary);
}
* {
  border-radius: 0 !important;
}

footer.site-footer {
  background: hsl(84, 38%, 18%);
  color: #f5f5f5;
  font-family: 'Playfair Display', serif;
  padding: 80px 0 24px;
}
footer.site-footer h5 {
  font-family: 'Ubuntu', sans-serif;
  color: #ffffff;
  margin-bottom: 16px;
}
footer.site-footer p, footer.site-footer li, footer.site-footer a {
  color: #e6e6e6;
  font-size: 0.95rem;
}
footer.site-footer a {
  text-decoration: none;
}
footer.site-footer a:hover {
  color: hsl(250, 52%, 65%);
  text-decoration: underline;
}
footer.site-footer ul {
  list-style: none;
  padding-left: 0;
}
footer.site-footer .footer-divider {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 40px 0 20px;
}
footer.site-footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: hsl(70, 38%, 34%);
  color: #ffffff;
  border-radius: 0;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background 0.2s ease;
}
footer.site-footer .social-icons a:hover {
  background: hsl(250, 52%, 65%);
  color: #ffffff;
}
.footer-bottom-text {
  font-size: 0.85rem;
  color: #cccccc;
}

#cookieStrip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: hsl(84, 38%, 18%);
  color: #f5f5f5;
  border-top: 3px solid hsl(250, 52%, 65%);
  font-family: 'Playfair Display', serif;
  max-height: 60vh;
  overflow-y: auto;
  padding: 20px 0;
}
#cookieStrip h6 {
  font-family: 'Ubuntu', sans-serif;
  color: #ffffff;
  margin-bottom: 8px;
}
#cookieStrip p, #cookieStrip li {
  font-size: 0.85rem;
  color: #e6e6e6;
  margin-bottom: 6px;
}
#cookieStrip ul {
  padding-left: 18px;
  margin-bottom: 12px;
}
.cookie-btn {
  border-radius: 0;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.9rem;
  padding: 10px 18px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  width: 100%;
}
.btn-accept-all {
  background: hsl(250, 52%, 65%);
  color: #ffffff;
}
.btn-accept-all:hover {
  background: hsl(250, 52%, 50%);
  color: #ffffff;
}
.btn-reject-optional {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn-reject-optional:hover {
  background: #ffffff;
  color: hsl(84, 38%, 18%);
}
.btn-manage {
  color: hsl(250, 52%, 65%);
  font-size: 0.85rem;
  text-decoration: underline;
}
.btn-manage:hover {
  color: #ffffff;
}

#contact-section {
  padding: 96px 0;
  background: #f8f9fa;
  color: #222;
  font-family: 'Playfair Display', serif;
}

#contact-section h1,
#contact-section h2,
#contact-section h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(84, 38%, 18%);
}

#contact-section .intro-text {
  max-width: 700px;
  margin-bottom: 48px;
}

#contact-section .contact-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 32px;
  height: 100%;
}

#contact-section .form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  padding: 12px;
  font-family: 'Playfair Display', serif;
}

#contact-section .form-control:focus {
  border-color: hsl(250, 52%, 65%);
  box-shadow: 0 0 0 0.2rem hsla(250, 52%, 65%, 0.25);
}

#contact-section label {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(84, 38%, 18%);
  font-weight: 500;
  margin-bottom: 6px;
}

#contact-section .btn-submit {
  background: hsl(70, 38%, 34%);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 12px 32px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  transition: background 0.2s ease;
}

#contact-section .btn-submit:hover {
  background: hsl(84, 38%, 18%);
  color: #fff;
}

#contact-section .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

#contact-section .info-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

#contact-section .info-list li:last-child {
  border-bottom: none;
}

#contact-section .info-list a {
  color: hsl(250, 52%, 65%);
  text-decoration: none;
  font-weight: 500;
}

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

#contact-section .info-label {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: hsl(70, 38%, 34%);
  display: block;
  margin-bottom: 4px;
}

#contact-section .hours-box {
  background: hsl(84, 38%, 18%);
  color: #fff;
  padding: 24px;
  margin-top: 24px;
}

#contact-section .hours-box h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

#contact-section .hours-box table {
  width: 100%;
  color: #fff;
  font-size: 0.95rem;
}

#contact-section .hours-box td {
  padding: 4px 0;
}

#contact-section .map-note {
  font-size: 0.95rem;
  margin-top: 8px;
}

#contact-section .map-note a {
  color: hsl(250, 52%, 65%);
  font-weight: 500;
}

#contact-section .reply-note {
  border-left: 3px solid hsl(250, 52%, 65%);
  padding-left: 16px;
  margin-top: 24px;
  font-size: 0.95rem;
  color: #444;
}

@media (max-width: 767px) {
  #contact-section {
    padding: 56px 0;
  }
}

.hero-section {
  background-color: #f8f9fa;
  padding: 96px 0;
}
.hero-heading {
  font-family: 'Ubuntu', sans-serif;
  color: #222;
  font-weight: 700;
  font-size: 2.2rem;
}
.hero-subheading {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(84, 38%, 18%);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.hero-description {
  font-family: 'Playfair Display', serif;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
}
.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0;
  padding: 16px 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
}
.info-strip .info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  color: #222;
  font-size: 0.95rem;
}
.info-strip .info-item i {
  color: hsl(250, 52%, 65%);
  font-size: 1.1rem;
}
.btn-primary-custom {
  background-color: hsl(70, 38%, 34%);
  border: 2px solid hsl(70, 38%, 34%);
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-primary-custom:hover {
  background-color: #fff;
  color: hsl(70, 38%, 34%);
}
.btn-outline-custom {
  background-color: transparent;
  border: 2px solid hsl(84, 38%, 18%);
  color: hsl(84, 38%, 18%);
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-outline-custom:hover {
  background-color: hsl(84, 38%, 18%);
  color: #fff;
}
.hero-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 767px) {
  .hero-section {
    padding: 64px 0;
  }
  .hero-heading {
    font-size: 1.7rem;
  }
}

#story {background:#ffffff;color:#222222;padding:96px 0;}
#story h2 {font-family:'Ubuntu',sans-serif;color:hsl(84,38%,18%);font-weight:700;margin-bottom:24px;}
#story h3 {font-family:'Ubuntu',sans-serif;color:hsl(70,38%,34%);font-weight:700;margin-top:40px;margin-bottom:16px;}
#story p, #story li {font-family:'Playfair Display',serif;color:#333333;line-height:1.75;font-size:1.05rem;}
#story img {aspect-ratio:3/2;width:100%;height:auto;object-fit:cover;border-radius:0;}
#story .img-wrap {margin-bottom:24px;}
#story .values-list {list-style:none;padding-left:0;}
#story .values-list li {padding-left:1.4rem;position:relative;margin-bottom:12px;}
#story .values-list li::before {content:"—";position:absolute;left:0;color:hsl(250,52%,65%);font-weight:700;}
#story .team-section {margin-top:64px;padding-top:56px;border-top:1px solid #ddd;}
#story .team-card {background:#f8f9fa;border:1px solid #ddd;border-radius:0;padding:24px;height:100%;}
#story .team-card h4 {font-family:'Ubuntu',sans-serif;color:hsl(84,38%,18%);font-weight:700;margin-bottom:4px;}
#story .team-card .role {font-family:'Ubuntu',sans-serif;color:hsl(250,52%,65%);font-weight:700;font-size:0.9rem;text-transform:uppercase;letter-spacing:0.03em;margin-bottom:12px;}
#story .team-card p {font-family:'Playfair Display',serif;color:#333333;font-size:0.98rem;margin-bottom:0;}
@media (max-width:767px){
  #story {padding:64px 0;}
  #story .team-section {margin-top:48px;padding-top:40px;}
}

.services-section {
  padding: 96px 0;
  background-color: #ffffff;
  font-family: 'Playfair Display', serif;
  color: #222;
}
.services-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(84, 38%, 18%);
  font-weight: 700;
}
.services-section .lead-text {
  color: #444;
  max-width: 720px;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 16px;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.service-item:hover {
  background-color: hsl(70, 38%, 96%);
  transform: translateX(4px);
}
.service-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 0;
  background-color: hsl(70, 38%, 34%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background-color 0.25s ease;
}
.service-item:hover .service-icon {
  background-color: hsl(250, 52%, 65%);
}
.service-body h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.15rem;
  color: hsl(84, 38%, 18%);
  margin-bottom: 8px;
}
.service-body p {
  font-size: 0.98rem;
  color: #333;
  margin-bottom: 8px;
}
.service-price {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: hsl(250, 52%, 65%);
  font-size: 1.05rem;
}
.two-col-list {
  border-top: 1px solid #ddd;
}
@media (min-width: 992px) {
  .col-divider {
    border-left: 1px solid #ddd;
  }
}
.services-note {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #ddd;
  color: #444;
  font-size: 0.95rem;
}

#advantages {
  padding: 96px 0;
  background-color: #f8f9fa;
}
#advantages h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(84, 38%, 18%);
  font-weight: 700;
}
#advantages .lead-text {
  font-family: 'Playfair Display', serif;
  color: #333;
  max-width: 700px;
}
#advantages .adv-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 32px 24px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#advantages .adv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  border-color: hsl(250, 52%, 65%);
}
#advantages .adv-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(70, 38%, 34%);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-radius: 0;
  transition: background-color 0.25s ease;
}
#advantages .adv-card:hover .adv-icon {
  background-color: hsl(250, 52%, 65%);
}
#advantages .adv-card h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.15rem;
  color: hsl(84, 38%, 18%);
  margin-bottom: 12px;
  font-weight: 600;
}
#advantages .adv-card p {
  font-family: 'Playfair Display', serif;
  color: #444;
  font-size: 0.97rem;
  line-height: 1.55;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #advantages { padding: 64px 0; }
}

#faq {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Playfair Display', serif;
  color: #222222;
}
#faq h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(84, 38%, 18%);
  font-weight: 700;
}
#faq .lead-text {
  color: #333333;
  max-width: 700px;
  margin-bottom: 48px;
}
#faq .accordion-item {
  border: 1px solid hsl(70, 38%, 34%);
  border-radius: 0;
  margin-bottom: 12px;
}
#faq .accordion-button {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  color: hsl(84, 38%, 18%);
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: none;
}
#faq .accordion-button:not(.collapsed) {
  background-color: hsl(70, 38%, 34%);
  color: #ffffff;
  box-shadow: none;
}
#faq .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(70, 38%, 34%);
}
#faq .accordion-button::after {
  filter: none;
}
#faq .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
#faq .accordion-body {
  background-color: #f8f9fa;
  color: #333333;
  line-height: 1.7;
  font-size: 1.02rem;
}
#faq .accent-line {
  width: 60px;
  height: 3px;
  background-color: hsl(250, 52%, 65%);
  margin-bottom: 24px;
}

#offer {
  padding:96px 0;
  background:#f8f9fa;
  font-family:'Playfair Display', serif;
  color:#222;
}
#offer h2, #offer h3 {
  font-family:'Ubuntu', sans-serif;
}
#offer .offer-box {
  border:2px solid hsl(70, 38%, 34%);
  background:#fff;
  padding:48px;
}
#offer .offer-box h2 {
  color:hsl(84, 38%, 18%);
  font-weight:700;
  margin-bottom:20px;
}
#offer .offer-box p.lead-text {
  font-size:1.05rem;
  line-height:1.7;
  color:#333;
}
#offer .offer-date {
  background:hsl(84, 38%, 18%);
  color:#fff;
  padding:20px 28px;
  display:inline-block;
  border-radius:0;
  margin:24px 0;
}
#offer .offer-date .label {
  font-size:0.9rem;
  color:#f0f0f0;
  display:block;
  margin-bottom:6px;
}
#offer .offer-date .date-value {
  font-family:'Ubuntu', sans-serif;
  font-size:1.6rem;
  font-weight:700;
  color:#fff;
}
#offer .offer-list {
  list-style:none;
  padding:0;
  margin:24px 0;
}
#offer .offer-list li {
  padding:10px 0;
  border-bottom:1px solid #e0e0e0;
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:1rem;
  color:#222;
}
#offer .offer-list li i {
  color:hsl(250, 52%, 65%);
  font-size:1.2rem;
  margin-top:2px;
}
#offer .btn-offer {
  background:hsl(250, 52%, 65%);
  color:#fff;
  border:none;
  border-radius:0;
  padding:14px 32px;
  font-family:'Ubuntu', sans-serif;
  font-weight:600;
  font-size:1.05rem;
  text-decoration:none;
  display:inline-block;
  margin-top:16px;
}
#offer .btn-offer:hover {
  background:hsl(84, 38%, 18%);
  color:#fff;
}
#offer .offer-badge {
  background:hsl(70, 38%, 34%);
  color:#fff;
  font-family:'Ubuntu', sans-serif;
  font-weight:700;
  padding:6px 16px;
  display:inline-block;
  margin-bottom:20px;
  font-size:0.95rem;
}
@media (max-width:768px){
  #offer .offer-box {padding:28px;}
}

#get-in-touch {
  background: #f8f9fa;
  padding: 96px 0;
  font-family: 'Playfair Display', serif;
  color: #222;
}
#get-in-touch h2, #get-in-touch h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(84, 38%, 18%);
}
#get-in-touch .lead-text {
  color: #333;
  margin-bottom: 40px;
}
#get-in-touch .form-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 32px;
}
#get-in-touch .form-control {
  border-radius: 0;
  border: 1px solid #999;
  color: #222;
  background: #fff;
}
#get-in-touch .form-control:focus {
  border-color: hsl(250, 52%, 65%);
  box-shadow: 0 0 0 0.2rem hsla(250, 52%, 65%, 0.25);
}
#get-in-touch label {
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}
#get-in-touch .btn-submit {
  background: hsl(70, 38%, 34%);
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 12px 32px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
}
#get-in-touch .btn-submit:hover {
  background: hsl(84, 38%, 18%);
  color: #ffffff;
}
#get-in-touch .info-card {
  background: hsl(84, 38%, 18%);
  color: #ffffff;
  border-radius: 0;
  padding: 32px;
  height: 100%;
}
#get-in-touch .info-card h3 {
  color: #ffffff;
  margin-bottom: 24px;
}
#get-in-touch .info-card a {
  color: #ffffff;
  text-decoration: underline;
}
#get-in-touch .info-card a:hover {
  color: hsl(250, 52%, 65%);
}
#get-in-touch .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
#get-in-touch .info-list li {
  margin-bottom: 16px;
  padding-left: 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 16px;
}
#get-in-touch .info-list li:last-child {
  border-bottom: none;
}
#get-in-touch .info-label {
  display: block;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: hsl(70, 38%, 60%);
  margin-bottom: 4px;
}
#get-in-touch .map-link {
  display: inline-block;
  margin-top: 8px;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  font-size: 0.95rem;
}
#get-in-touch .map-link:hover {
  color: hsl(250, 52%, 65%);
  border-color: hsl(250, 52%, 65%);
}
@media (max-width: 767px) {
  #get-in-touch {
    padding: 64px 0;
  }
  #get-in-touch .form-card,
  #get-in-touch .info-card {
    padding: 24px;
    margin-bottom: 24px;
  }
}

#legal-notice {
  background-color: #f8f9fa;
  padding: 80px 0;
  font-family: 'Playfair Display', serif;
}
#legal-notice h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(84, 38%, 18%);
  font-weight: 700;
  border-radius: 0;
}
#legal-notice .icon-wrap {
  color: hsl(250, 52%, 65%);
  font-size: 2.2rem;
  flex-shrink: 0;
}
#legal-notice .disclaimer-box {
  background-color: #ffffff;
  border: 1px solid hsl(70, 38%, 34%);
  border-radius: 0;
  padding: 32px;
  color: #222222;
}
#legal-notice p {
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

#about-body {
  background-color: #ffffff;
  color: #222222;
  font-family: 'Playfair Display', serif;
  padding: 96px 0;
}

#about-body h1,
#about-body h2,
#about-body h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(84, 38%, 18%);
}

#about-body .lead-text {
  font-size: 1.05rem;
  line-height: 1.8;
}

#about-body .section-block {
  margin-bottom: 88px;
}

#about-body .section-block:last-of-type {
  margin-bottom: 0;
}

#about-body img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

#about-body .img-caption {
  font-size: 0.85rem;
  color: #555555;
  margin-top: 8px;
}

#about-body .values-list {
  list-style: none;
  padding-left: 0;
}

#about-body .values-list li {
  padding: 14px 0 14px 32px;
  position: relative;
  border-bottom: 1px solid #e2e2e2;
}

#about-body .values-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: hsl(250, 52%, 65%);
  font-weight: bold;
}

#about-body .steps-list {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
}

#about-body .steps-list li {
  counter-increment: step-counter;
  position: relative;
  padding: 16px 0 16px 56px;
  border-bottom: 1px dashed #cccccc;
}

#about-body .steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 12px;
  width: 36px;
  height: 36px;
  background-color: hsl(70, 38%, 34%);
  color: #ffffff;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

#about-body .team-card {
  border: 1px solid #dcdcdc;
  background-color: #f8f9fa;
  padding: 28px;
  height: 100%;
  border-radius: 0;
}

#about-body .team-card .role {
  color: hsl(250, 52%, 65%);
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: block;
}

#about-body .team-card h3 {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

#about-body .stat-box {
  background-color: hsl(84, 38%, 18%);
  color: #ffffff;
  padding: 24px;
  text-align: center;
  border-radius: 0;
  height: 100%;
}

#about-body .stat-box .stat-number {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

#about-body .stat-box .stat-label {
  font-size: 0.85rem;
  color: #e8e8e8;
}

#about-body .cta-box {
  background-color: hsl(70, 38%, 34%);
  color: #ffffff;
  padding: 48px;
  text-align: center;
}

#about-body .cta-box h2 {
  color: #ffffff;
}

#about-body .cta-box p {
  color: #f0f0f0;
}

#about-body .btn-cta {
  background-color: hsl(250, 52%, 65%);
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
}

#about-body .btn-cta:hover {
  background-color: hsl(250, 52%, 55%);
  color: #ffffff;
}

@media (max-width: 767px) {
  #about-body {
    padding: 64px 0;
  }
  #about-body .section-block {
    margin-bottom: 64px;
  }
}



  

  .thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(84, 38%, 18%) 0%, hsl(70, 38%, 34%) 100%);
    padding: 3rem 1rem;
    font-family: 'Playfair Display', serif;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 3rem 2.5rem;
    max-width: 640px;
    width: 100%;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.25);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .thankyou-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: var(--accent);
    opacity: 0.15;
    border-radius: 50%;
  }

  .thankyou-card::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 180px;
    height: 180px;
    background: var(--primary);
    opacity: 0.12;
    border-radius: 50%;
  }

  .success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1.5rem hsla(70, 38%, 34%, 0.35);
    position: relative;
    z-index: 1;
    animation: popIn 0.6s ease-out;
  }

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

  .success-icon-wrapper svg {
    width: 50px;
    height: 50px;
    stroke: #ffffff;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .thankyou-heading {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }

  .thankyou-text {
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 0.9rem;
    position: relative;
    z-index: 1;
  }

  .thankyou-highlight {
    color: var(--accent);
    font-weight: 600;
    font-style: italic;
  }

  .thankyou-divider {
    width: 70px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 1.5rem auto;
  }

  .btn-home {
    font-family: 'Ubuntu', sans-serif;
    background-color: var(--primary);
    border: none;
    color: #ffffff;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    box-shadow: 0 0.4rem 1rem hsla(70, 38%, 34%, 0.4);
    position: relative;
    z-index: 1;
  }

  .btn-home:hover {
    background-color: var(--secondary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 0.6rem 1.4rem hsla(84, 38%, 18%, 0.5);
  }

  .thankyou-note {
    font-size: 0.9rem;
    color: #8a8a8a;
    margin-top: 1.75rem;
    position: relative;
    z-index: 1;
  }

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

#faq-page {
  background-color: #ffffff;
  color: #222222;
  font-family: 'Playfair Display', serif;
  padding: 96px 0;
}
#faq-page h1, #faq-page h2, #faq-page h3 {
  font-family: 'Ubuntu', sans-serif;
}
#faq-page .faq-header {
  margin-bottom: 80px;
}
#faq-page .faq-header h1 {
  color: hsl(84, 38%, 18%);
  font-weight: 700;
  font-size: 2.4rem;
}
#faq-page .faq-header p {
  color: #333333;
  font-size: 1.1rem;
  max-width: 780px;
}
#faq-page .badge-info {
  background-color: hsl(250, 52%, 65%);
  color: #ffffff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 0;
  display: inline-block;
  margin-bottom: 16px;
}
#faq-page .accordion {
  border-radius: 0;
}
#faq-page .accordion-item {
  border: 1px solid #dcdcdc;
  border-radius: 0;
  margin-bottom: 12px;
}
#faq-page .accordion-button {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  color: hsl(84, 38%, 18%);
  background-color: #ffffff;
  border-radius: 0;
  font-size: 1.02rem;
}
#faq-page .accordion-button:not(.collapsed) {
  background-color: hsl(70, 38%, 34%);
  color: #ffffff;
  box-shadow: none;
}
#faq-page .accordion-button:focus {
  box-shadow: none;
  border-color: #dcdcdc;
}
#faq-page .accordion-button::after {
  filter: none;
}
#faq-page .accordion-body {
  color: #333333;
  font-size: 1rem;
  line-height: 1.65;
  background-color: #f8f9fa;
}
#faq-page .process-block {
  margin-top: 96px;
  padding-top: 80px;
  border-top: 1px solid #dcdcdc;
}
#faq-page .process-block h2 {
  color: hsl(84, 38%, 18%);
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 1.9rem;
}
#faq-page .step-card {
  border: 1px solid #dcdcdc;
  padding: 24px;
  height: 100%;
  background-color: #ffffff;
}
#faq-page .step-number {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: #ffffff;
  background-color: hsl(250, 52%, 65%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.1rem;
}
#faq-page .step-card h3 {
  font-size: 1.05rem;
  color: hsl(84, 38%, 18%);
  margin-bottom: 10px;
}
#faq-page .step-card p {
  color: #333333;
  font-size: 0.95rem;
  margin-bottom: 0;
}
#faq-page .cta-block {
  margin-top: 96px;
  background-color: hsl(84, 38%, 18%);
  padding: 48px;
  text-align: center;
}
#faq-page .cta-block h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1.6rem;
}
#faq-page .cta-block p {
  color: #f0f0f0;
  margin-bottom: 24px;
  font-size: 1.02rem;
}
#faq-page .cta-block .btn-cta {
  background-color: hsl(250, 52%, 65%);
  color: #ffffff;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: 0;
  border: none;
  text-decoration: none;
  display: inline-block;
}
#faq-page .cta-block .btn-cta:hover {
  background-color: hsl(70, 38%, 34%);
  color: #ffffff;
}
@media (max-width: 767px) {
  #faq-page { padding: 64px 0; }
  #faq-page .process-block { margin-top: 64px; padding-top: 56px; }
  #faq-page .cta-block { margin-top: 64px; padding: 32px 20px; }
}

#services-content {
  background-color: #ffffff;
  color: #222222;
  font-family: 'Playfair Display', serif;
  padding: 96px 0;
}
#services-content h1, #services-content h2, #services-content h3, #services-content h4 {
  font-family: 'Ubuntu', sans-serif;
}
#services-content .page-header {
  margin-bottom: 88px;
}
#services-content .page-header h1 {
  color: hsl(84, 38%, 18%);
  font-weight: 700;
}
#services-content .page-header p {
  color: #333333;
  max-width: 760px;
}
#services-content .service-card {
  background-color: #f8f9fa;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  padding: 32px 24px;
  height: 100%;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
#services-content .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
  background-color: hsl(70, 38%, 34%);
}
#services-content .service-card:hover h3,
#services-content .service-card:hover p,
#services-content .service-card:hover .price {
  color: #ffffff;
}
#services-content .service-card:hover .icon-wrap {
  background-color: hsl(250, 52%, 65%);
  color: #ffffff;
}
#services-content .icon-wrap {
  width: 72px;
  height: 72px;
  background-color: hsl(84, 38%, 18%);
  color: #ffffff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 32px;
  transition: background-color 0.25s ease, color 0.25s ease;
}
#services-content .service-card h3 {
  font-size: 1.15rem;
  color: hsl(84, 38%, 18%);
  margin-bottom: 12px;
  transition: color 0.25s ease;
}
#services-content .service-card p {
  font-size: 0.95rem;
  color: #444444;
  margin-bottom: 16px;
  transition: color 0.25s ease;
}
#services-content .price {
  display: inline-block;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: hsl(70, 38%, 34%);
  border-top: 1px solid #cccccc;
  padding-top: 12px;
  width: 100%;
  transition: color 0.25s ease;
}
#services-content .terms-block {
  background-color: hsl(84, 38%, 18%);
  color: #ffffff;
  padding: 40px;
  margin-top: 96px;
}
#services-content .terms-block h2 {
  color: #ffffff;
  margin-bottom: 16px;
}
#services-content .terms-block li {
  margin-bottom: 8px;
}
#services-content .qa-block {
  margin-top: 96px;
}
#services-content .qa-block h2 {
  color: hsl(84, 38%, 18%);
  margin-bottom: 32px;
}
#services-content .accordion-item {
  border-radius: 0;
  border: 1px solid #dcdcdc;
}
#services-content .accordion-button {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(84, 38%, 18%);
  background-color: #f8f9fa;
  border-radius: 0;
}
#services-content .accordion-button:not(.collapsed) {
  background-color: hsl(70, 38%, 34%);
  color: #ffffff;
}
#services-content .accordion-button:focus {
  box-shadow: none;
}
#services-content .cta-final {
  margin-top: 96px;
  background-color: hsl(250, 52%, 65%);
  color: #ffffff;
  padding: 48px 32px;
  text-align: center;
}
#services-content .cta-final h2 {
  color: #ffffff;
  margin-bottom: 16px;
}
#services-content .cta-final p {
  color: #f0f0f0;
  margin-bottom: 24px;
}
#services-content .btn-cta {
  background-color: #ffffff;
  color: hsl(84, 38%, 18%);
  border: none;
  padding: 12px 32px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
}
#services-content .btn-cta:hover {
  background-color: hsl(70, 38%, 34%);
  color: #ffffff;
}
@media (max-width: 767px) {
  #services-content { padding: 64px 0; }
  #services-content .terms-block, #services-content .cta-final { margin-top: 64px; padding: 32px 20px; }
  #services-content .qa-block { margin-top: 64px; }
}
