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

:root {
  --primary: hsl(221, 18%, 36%);
  --secondary: hsl(341, 10%, 18%);
  --accent: hsl(101, 29%, 46%);
  --surface: #f4f4f1;
}

body{
  font-family: 'Libre Baskerville', serif;
  background-color: var(--surface);
  color: var(--secondary);
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Quicksand', sans-serif;
}
.navbar{
  background-color: #ffffff;
  border-bottom: 2px solid var(--primary);
}
.navbar-brand{
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--primary) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
}
.navbar-nav .nav-link{
  color: var(--secondary) !important;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  margin-left: 12px;
  padding: 8px 6px !important;
}
.navbar-nav .nav-link:hover{
  color: var(--accent) !important;
}
.navbar-toggler{
  border-color: var(--primary);
}
.navbar-toggler:focus{
  box-shadow: 0 0 0 0.2rem hsla(221, 18%, 36%, 0.35);
}

.site-footer {
    background: hsl(341, 10%, 18%);
    color: #f4f4f1;
    font-family: 'Libre Baskerville', serif;
    padding: 52px 0 24px;
    border-radius: 0;
  }
  .site-footer h5, .site-footer h6 {
    font-family: 'Quicksand', sans-serif;
    color: #ffffff;
    margin-bottom: 16px;
  }
  .site-footer p, .site-footer a {
    color: #e5e4e1;
  }
  .site-footer a {
    text-decoration: none;
  }
  .site-footer a:hover {
    color: hsl(101, 29%, 46%);
    text-decoration: underline;
  }
  .footer-links li {
    margin-bottom: 8px;
  }
  .footer-divider {
    border-color: rgba(255,255,255,0.15);
    margin: 32px 0 20px;
  }
  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: hsl(221, 18%, 36%);
    color: #ffffff;
    margin-right: 10px;
    font-size: 1.1rem;
    border-radius: 0;
    transition: background 0.2s ease;
  }
  .social-icons a:hover {
    background: hsl(101, 29%, 46%);
    color: #ffffff;
  }
  .footer-bottom {
    font-size: 0.85rem;
    color: #cfcfcc;
  }

  #consentPanel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: hsl(341, 10%, 18%);
    color: #f4f4f1;
    z-index: 2000;
    border-top: 3px solid hsl(101, 29%, 46%);
    font-family: 'Libre Baskerville', serif;
    max-height: 60%;
    overflow-y: auto;
    padding: 18px 0;
  }
  #consentPanel h6 {
    font-family: 'Quicksand', sans-serif;
    color: #ffffff;
    margin-bottom: 8px;
  }
  #consentPanel p, #consentPanel li {
    font-size: 0.85rem;
    color: #e5e4e1;
    margin-bottom: 6px;
  }
  #consentPanel ul {
    padding-left: 18px;
    margin-bottom: 10px;
  }
  .consent-btn {
    font-family: 'Quicksand', sans-serif;
    border-radius: 0;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid transparent;
    width: 100%;
    transition: all 0.2s ease;
  }
  .btn-accept-all {
    background: hsl(101, 29%, 46%);
    color: #ffffff;
    border-color: hsl(101, 29%, 46%);
  }
  .btn-accept-all:hover {
    background: hsl(101, 29%, 36%);
    border-color: hsl(101, 29%, 36%);
    color: #ffffff;
  }
  .btn-reject-optional {
    background: transparent;
    color: #f4f4f1;
    border-color: #f4f4f1;
  }
  .btn-reject-optional:hover {
    background: #f4f4f1;
    color: hsl(341, 10%, 18%);
  }
  .btn-manage {
    color: hsl(101, 29%, 60%);
    font-size: 0.85rem;
    text-decoration: underline;
  }
  .btn-manage:hover {
    color: #ffffff;
  }

#services-content {
  background-color: #f4f4f1;
  font-family: 'Libre Baskerville', serif;
  color: hsl(341, 10%, 18%);
  padding: 52px 0;
}

#services-content h1,
#services-content h2,
#services-content h3,
#services-content h4 {
  font-family: 'Quicksand', sans-serif;
}

#services-content .page-header {
  margin-bottom: 48px;
}

#services-content .page-header h1 {
  color: hsl(221, 18%, 36%);
  font-weight: 700;
  font-size: 2.4rem;
}

#services-content .page-header p {
  max-width: 720px;
  color: hsl(341, 10%, 18%);
  font-size: 1.05rem;
}

#services-content .intro-stats {
  background-color: #fff;
  border: 1px solid #dedcd6;
  padding: 20px 24px;
  margin-bottom: 48px;
}

#services-content .intro-stats .stat-item {
  text-align: center;
  padding: 8px 0;
}

#services-content .intro-stats .stat-number {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: hsl(101, 29%, 46%);
}

#services-content .intro-stats .stat-label {
  font-size: 0.85rem;
  color: hsl(341, 10%, 18%);
}

#services-content .service-card {
  background-color: #fff;
  border: 1px solid #dedcd6;
  border-radius: 0;
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#services-content .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  border-color: hsl(101, 29%, 46%);
}

#services-content .service-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  background-color: hsl(221, 18%, 36%);
  color: #f7f6f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  transition: background-color 0.2s ease;
}

#services-content .service-card:hover .service-icon {
  background-color: hsl(101, 29%, 46%);
}

#services-content .service-body {
  flex: 1 1 auto;
}

#services-content .service-body h3 {
  color: hsl(221, 18%, 36%);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

#services-content .service-body p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.55;
}

#services-content .service-price {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(341, 10%, 18%);
  background-color: #f4f4f1;
  border: 1px solid #dedcd6;
  padding: 4px 12px;
  display: inline-block;
  font-size: 0.95rem;
}

#services-content .terms-box {
  background-color: hsl(221, 18%, 36%);
  color: #f7f6f3;
  padding: 32px;
  margin-top: 48px;
}

#services-content .terms-box h2 {
  color: #f7f6f3;
  font-weight: 700;
  margin-bottom: 16px;
}

#services-content .terms-box ul {
  padding-left: 20px;
  margin-bottom: 0;
}

#services-content .terms-box li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

#services-content .faq-section {
  margin-top: 48px;
}

#services-content .faq-section h2 {
  color: hsl(221, 18%, 36%);
  font-weight: 700;
  margin-bottom: 24px;
}

#services-content .accordion-item {
  border: 1px solid #dedcd6;
  border-radius: 0;
  margin-bottom: 12px;
  background-color: #fff;
}

#services-content .accordion-button {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(341, 10%, 18%);
  background-color: #fff;
  border-radius: 0;
}

#services-content .accordion-button:not(.collapsed) {
  background-color: hsl(221, 18%, 36%);
  color: #f7f6f3;
  box-shadow: none;
}

#services-content .accordion-button:focus {
  box-shadow: none;
  border-color: #dedcd6;
}

#services-content .accordion-body {
  font-size: 0.95rem;
  color: hsl(341, 10%, 18%);
  background-color: #fdfdfc;
}

#services-content .cta-box {
  background-color: hsl(101, 29%, 46%);
  color: #ffffff;
  padding: 40px 32px;
  text-align: center;
  margin-top: 48px;
}

#services-content .cta-box h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 12px;
}

#services-content .cta-box p {
  color: #f4f4f1;
  margin-bottom: 20px;
}

#services-content .cta-box .btn-cta {
  background-color: hsl(341, 10%, 18%);
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border-radius: 0;
  transition: background-color 0.2s ease;
}

#services-content .cta-box .btn-cta:hover {
  background-color: hsl(221, 18%, 36%);
  color: #ffffff;
}

@media (max-width: 576px) {
  #services-content .service-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

#portfolio-content {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Libre Baskerville', serif;
  color: hsl(341, 10%, 18%);
}
#portfolio-content h1, #portfolio-content h2, #portfolio-content h3, #portfolio-content h4 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(221, 18%, 36%);
}
#portfolio-content .page-intro {
  max-width: 780px;
  margin: 0 auto 40px auto;
  text-align: center;
}
#portfolio-content .page-intro h1 {
  font-weight: 700;
  margin-bottom: 16px;
}
#portfolio-content .page-intro p {
  color: hsl(341, 10%, 18%);
}
#portfolio-content .card {
  border-radius: 0;
  border: 1px solid #dedcd6;
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#portfolio-content .card-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #e5e4df;
}
#portfolio-content .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio-content .badge-category {
  background-color: hsl(101, 29%, 46%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: 0;
  padding: 5px 10px;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 10px;
}
#portfolio-content .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#portfolio-content .card-title {
  font-weight: 700;
  margin-bottom: 8px;
  color: hsl(221, 18%, 36%);
}
#portfolio-content .card-text {
  color: hsl(341, 10%, 18%);
  font-size: 0.95rem;
  flex-grow: 1;
}
#portfolio-content .btn-details {
  background-color: hsl(221, 18%, 36%);
  color: #fff;
  border-radius: 0;
  border: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 8px 18px;
  margin-top: 12px;
  align-self: flex-start;
}
#portfolio-content .btn-details:hover {
  background-color: hsl(101, 29%, 46%);
  color: #fff;
}
#portfolio-content .modal-content {
  border-radius: 0;
  background-color: #fff;
  color: hsl(341, 10%, 18%);
}
#portfolio-content .modal-header {
  background-color: hsl(221, 18%, 36%);
  color: #fff;
  border-radius: 0;
}
#portfolio-content .modal-header .btn-close {
  filter: invert(1);
}
#portfolio-content .modal-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
#portfolio-content .details-table th {
  font-family: 'Quicksand', sans-serif;
  color: hsl(221, 18%, 36%);
  width: 40%;
  background-color: #f4f4f1;
}
#portfolio-content .details-table td, #portfolio-content .details-table th {
  border: 1px solid #dedcd6;
  padding: 8px 12px;
  font-size: 0.92rem;
}
#portfolio-content .stats-strip {
  background-color: hsl(341, 10%, 18%);
  color: #f4f4f1;
  padding: 28px 24px;
  margin: 48px 0;
}
#portfolio-content .stats-strip .stat-num {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: hsl(101, 29%, 46%);
}
#portfolio-content .stats-strip .stat-label {
  font-size: 0.85rem;
  color: #f4f4f1;
}
#portfolio-content .cta-box {
  background-color: hsl(221, 18%, 36%);
  color: #fff;
  padding: 36px 28px;
  text-align: center;
  margin-top: 48px;
}
#portfolio-content .cta-box h2 {
  color: #fff;
  margin-bottom: 12px;
}
#portfolio-content .cta-box p {
  color: #f4f4f1;
  margin-bottom: 20px;
}
#portfolio-content .cta-box .btn-cta {
  background-color: hsl(101, 29%, 46%);
  color: #fff;
  border-radius: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 10px 28px;
  border: none;
  text-decoration: none;
  display: inline-block;
}
#portfolio-content .btn-cta:hover {
  background-color: #fff;
  color: hsl(221, 18%, 36%);
}
@media (max-width: 576px) {
  #portfolio-content .stats-strip .stat-num { font-size: 1.5rem; }
}

#contact-section {
  background: #f4f4f1;
  font-family: 'Libre Baskerville', serif;
  color: #222;
  padding: 52px 0;
}
#contact-section h1,
#contact-section h2,
#contact-section h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(221, 18%, 36%);
}
#contact-section .lead-text {
  color: #333;
  max-width: 700px;
}
#contact-section .info-card {
  background: hsl(221, 18%, 36%);
  color: #f7f6f3;
  padding: 32px;
  border-radius: 0;
}
#contact-section .info-card h3 {
  color: #f7f6f3;
}
#contact-section .info-card a {
  color: #f7f6f3;
  text-decoration: underline;
}
#contact-section .info-card a:hover {
  color: hsl(101, 29%, 46%);
}
#contact-section .info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contact-section .info-card li {
  margin-bottom: 8px;
}
#contact-section .hours-table {
  width: 100%;
  color: #f7f6f3;
  font-size: 0.95rem;
}
#contact-section .hours-table td {
  padding: 3px 0;
  border-bottom: 1px solid rgba(247,246,243,0.2);
}
#contact-section .map-link {
  color: hsl(101, 29%, 46%);
  font-weight: 700;
  text-decoration: underline;
}
#contact-section .map-link:hover {
  color: #f7f6f3;
}
#contact-section .form-card {
  background: #ffffff;
  padding: 32px;
  border: 1px solid #ddd;
  border-radius: 0;
}
#contact-section .form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  font-family: 'Libre Baskerville', serif;
}
#contact-section .form-control:focus {
  border-color: hsl(101, 29%, 46%);
  box-shadow: 0 0 0 0.2rem rgba(101, 29%, 46%, 0.15);
}
#contact-section label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(341, 10%, 18%);
  margin-bottom: 4px;
}
#contact-section .btn-submit {
  background: hsl(101, 29%, 46%);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 12px 28px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
}
#contact-section .btn-submit:hover {
  background: hsl(101, 29%, 36%);
  color: #fff;
}
#contact-section .cta-strip {
  background: hsl(341, 10%, 18%);
  color: #f7f6f3;
  padding: 28px;
  margin-top: 48px;
  text-align: center;
}
#contact-section .cta-strip h3 {
  color: #f7f6f3;
}
#contact-section .cta-strip .btn-cta {
  background: hsl(101, 29%, 46%);
  color: #fff;
  border-radius: 0;
  padding: 10px 26px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}
#contact-section .btn-cta:hover {
  background: #fff;
  color: hsl(341, 10%, 18%);
}

.xg-hero {
    background-color: #f4f4f1;
    padding: 52px 0 40px 0;
    font-family: 'Libre Baskerville', serif;
    border-bottom: 1px solid #e0e0dc;
  }
  .xg-hero h1 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: hsl(341, 10%, 18%);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .xg-hero h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    color: hsl(221, 18%, 36%);
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .xg-hero p.xg-desc {
    color: #333;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1.75rem auto;
  }
  .xg-hero .xg-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: hsl(221, 18%, 36%);
    color: #f7f6f3;
    border-radius: 0;
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
  }
  .xg-btn-primary-cta {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background-color: hsl(101, 29%, 46%);
    color: #ffffff;
    border: 2px solid hsl(101, 29%, 46%);
    border-radius: 0;
    padding: 0.75rem 2rem;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  }
  .xg-btn-primary-cta:hover,
  .xg-btn-primary-cta:focus {
    background-color: hsl(341, 10%, 18%);
    border-color: hsl(341, 10%, 18%);
    color: #ffffff;
  }
  @media (max-width: 576px) {
    .xg-hero h1 {
      font-size: 1.9rem;
    }
    .xg-hero h2 {
      font-size: 1.05rem;
    }
  }

.services-section {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Libre Baskerville', serif;
}
.services-section h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(221, 18%, 36%);
  font-weight: 700;
}
.services-section .lead-text {
  color: hsl(341, 10%, 18%);
  max-width: 700px;
  margin: 0 auto;
}
.service-card {
  background-color: #ffffff;
  border: 1px solid #e0e0dc;
  border-radius: 0;
  padding: 32px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  border-color: hsl(101, 29%, 46%);
}
.service-icon {
  width: 56px;
  height: 56px;
  background-color: hsl(221, 18%, 36%);
  color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: background-color 0.25s ease;
}
.service-card:hover .service-icon {
  background-color: hsl(101, 29%, 46%);
}
.service-card h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(341, 10%, 18%);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card p {
  color: #444444;
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ececea;
  padding-top: 14px;
}
.service-price {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(221, 18%, 36%);
  font-size: 1.1rem;
}
.service-terms {
  font-size: 0.82rem;
  color: hsl(341, 10%, 18%);
  background-color: #f0f0ed;
  padding: 4px 10px;
}
.section-divider {
  width: 70px;
  height: 3px;
  background-color: hsl(101, 29%, 46%);
  margin: 16px auto 24px;
}

#gallery {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Libre Baskerville', serif;
}
#gallery h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(221, 18%, 36%);
  font-weight: 700;
}
#gallery .lead-text {
  color: hsl(341, 10%, 18%);
  max-width: 700px;
}
#gallery .portfolio-card {
  background: #fff;
  border: 1px solid #e0e0dc;
  border-radius: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}
#gallery .portfolio-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
#gallery .portfolio-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #eaeae6;
}
#gallery .portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#gallery .portfolio-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#gallery .badge-category {
  background-color: hsl(101, 29%, 46%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: 0;
  padding: 5px 10px;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 10px;
  align-self: flex-start;
}
#gallery .portfolio-body h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(341, 10%, 18%);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
#gallery .portfolio-body p {
  color: #444;
  font-size: 0.92rem;
  line-height: 1.6;
  flex-grow: 1;
}
#gallery .btn-view-details {
  background-color: hsl(221, 18%, 36%);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 9px 18px;
  margin-top: 12px;
  align-self: flex-start;
  text-decoration: none;
}
#gallery .btn-view-details:hover {
  background-color: hsl(101, 29%, 46%);
  color: #fff;
}
#gallery .modal-content {
  border-radius: 0;
  background-color: #fff;
}
#gallery .modal-header {
  background-color: hsl(221, 18%, 36%);
  color: #f4f4f1;
  border-radius: 0;
}
#gallery .modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}
#gallery .modal-body {
  color: #333;
  font-family: 'Libre Baskerville', serif;
}
#gallery .modal-body img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 16px;
}
#gallery .modal-badge {
  background-color: hsl(101, 29%, 46%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.8rem;
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 12px;
}

#figures {
  background: #f4f4f1;
  padding: 52px 0;
  font-family: 'Libre Baskerville', serif;
}

#figures .section-heading {
  font-family: 'Quicksand', sans-serif;
  color: hsl(341, 10%, 18%);
  font-weight: 700;
  margin-bottom: 8px;
}

#figures .section-sub {
  color: hsl(221, 18%, 36%);
  margin-bottom: 40px;
  max-width: 640px;
}

#figures .stat-card {
  background: #ffffff;
  border: 1px solid #e3e2dd;
  border-radius: 0;
  padding: 32px 20px;
  height: 100%;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#figures .stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  border-color: hsl(101, 29%, 46%);
}

#figures .stat-icon {
  font-size: 2.4rem;
  color: hsl(101, 29%, 46%);
  margin-bottom: 14px;
  display: inline-block;
  animation: popIn 0.6s ease both;
}

#figures .stat-number {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: hsl(221, 18%, 36%);
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  animation: countUp 0.9s ease-out both;
}

#figures .stat-label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(341, 10%, 18%);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

#figures .stat-context {
  color: #555;
  font-size: 0.92rem;
  margin-bottom: 0;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.6) rotate(-8deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@media (max-width: 767px) {
  #figures .stat-number {
    font-size: 2.1rem;
  }
  #figures .stat-icon {
    font-size: 2rem;
  }
}

#questions {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Libre Baskerville', serif;
}

#questions h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(221, 18%, 36%);
}

#questions .lead-text {
  color: hsl(341, 10%, 18%);
  max-width: 700px;
}

#questions .accordion-item {
  border: 1px solid hsl(221, 18%, 36%);
  border-radius: 0;
  margin-bottom: 12px;
  background-color: #fff;
}

#questions .accordion-button {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(341, 10%, 18%);
  background-color: #fff;
  border-radius: 0;
  box-shadow: none;
}

#questions .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: hsl(221, 18%, 36%);
  box-shadow: none;
}

#questions .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(221, 18%, 36%);
}

#questions .accordion-button::after {
  filter: none;
}

#questions .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

#questions .accordion-body {
  color: hsl(341, 10%, 18%);
  background-color: #fff;
  line-height: 1.7;
}

#questions .accent-line {
  width: 60px;
  height: 4px;
  background-color: hsl(101, 29%, 46%);
  margin-bottom: 20px;
}

#enquiry {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Libre Baskerville', serif;
  color: hsl(341, 10%, 18%);
}

#enquiry h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(221, 18%, 36%);
  font-weight: 700;
  margin-bottom: 12px;
}

#enquiry p.lead-text {
  color: hsl(341, 10%, 18%);
  font-size: 1.05rem;
  max-width: 640px;
}

#enquiry .enquiry-card {
  background-color: #ffffff;
  border: 1px solid #e0e0dc;
  border-radius: 0;
  padding: 32px;
}

#enquiry .enquiry-card h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(221, 18%, 36%);
  font-weight: 600;
  margin-bottom: 20px;
}

#enquiry .form-label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(341, 10%, 18%);
  margin-bottom: 4px;
}

#enquiry .form-control {
  border-radius: 0;
  border: 1px solid #c9c9c5;
  background-color: #f7f6f3;
  color: hsl(341, 10%, 18%);
  padding: 10px 12px;
}

#enquiry .form-control:focus {
  border-color: hsl(101, 29%, 46%);
  box-shadow: 0 0 0 0.2rem rgba(101, 150, 76, 0.2);
  background-color: #ffffff;
}

#enquiry .btn-submit {
  background-color: hsl(101, 29%, 46%);
  color: #ffffff;
  border: none;
  border-radius: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 12px 32px;
  letter-spacing: 0.03em;
  transition: background-color 0.2s ease;
}

#enquiry .btn-submit:hover {
  background-color: hsl(221, 18%, 36%);
  color: #ffffff;
}

#enquiry .info-block {
  background-color: hsl(221, 18%, 36%);
  color: #f7f6f3;
  padding: 32px;
  height: 100%;
}

#enquiry .info-block h3 {
  font-family: 'Quicksand', sans-serif;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 20px;
}

#enquiry .info-block a {
  color: #ffffff;
  text-decoration: underline;
}

#enquiry .info-block a:hover {
  color: hsl(101, 29%, 46%);
}

#enquiry .info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

#enquiry .info-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 3px;
  color: hsl(101, 29%, 46%);
}

#enquiry .info-item p, #enquiry .info-item span {
  margin: 0;
  color: #f7f6f3;
  line-height: 1.5;
}

#enquiry .hours-table {
  width: 100%;
  font-size: 0.92rem;
}

#enquiry .hours-table td {
  padding: 3px 0;
  color: #f7f6f3;
  border: none;
}

#enquiry .hours-table td:last-child {
  text-align: right;
}

#enquiry .find-us-line {
  font-size: 0.9rem;
  color: #e6e6e0;
  margin-top: -8px;
  margin-bottom: 20px;
}

#enquiry .find-us-line a {
  color: hsl(101, 29%, 46%);
  text-decoration: underline;
}

#enquiry .find-us-line a:hover {
  color: #ffffff;
}

#enquiry hr.info-divider {
  border-top: 1px solid rgba(255,255,255,0.25);
  margin: 20px 0;
}

#important {
  background-color: #f4f4f1;
  padding: 48px 0;
  font-family: 'Libre Baskerville', serif;
}
#important .disclaimer-box {
  background-color: #ffffff;
  border-left: 4px solid hsl(221, 18%, 36%);
  padding: 32px 28px;
}
#important .disclaimer-icon {
  color: hsl(101, 29%, 46%);
  font-size: 2rem;
  margin-right: 16px;
  flex-shrink: 0;
}
#important h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(341, 10%, 18%);
  font-weight: 600;
  margin-bottom: 12px;
}
#important p {
  color: #333333;
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 1rem;
}



  

  .thankyou-section {
    font-family: 'Libre Baskerville', serif;
    background: linear-gradient(135deg, hsl(221, 18%, 97%) 0%, hsl(101, 29%, 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);
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }

  .thankyou-heading {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    font-size: 2rem;
  }

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

  .thankyou-icon-wrapper svg {
    width: 52px;
    height: 52px;
    stroke: var(--accent);
  }

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

  .thankyou-message {
    color: var(--primary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
  }

  .thankyou-note {
    background: hsl(221, 18%, 96%);
    border-left: 4px solid var(--accent);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: var(--secondary);
    text-align: left;
    margin: 1.75rem 0;
  }

  .thankyou-note strong {
    font-family: 'Quicksand', sans-serif;
    color: var(--primary);
  }

  .btn-home {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    padding: 0.75rem 2.25rem;
    border-radius: 0.6rem;
    font-size: 1.05rem;
    transition: all 0.25s ease;
  }

  .btn-home:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
  }

  .thankyou-subtext {
    color: hsl(221, 10%, 45%);
    font-size: 0.9rem;
    margin-top: 1.5rem;
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2.25rem 1.5rem;
    }
    .thankyou-heading {
      font-size: 1.6rem;
    }
  }
