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

:root {
  --primary: hsl(228, 40%, 33%);
  --secondary: hsl(18, 29%, 18%);
  --accent: hsl(78, 66%, 38%);
}

body{
  font-family:'Libre Baskerville', serif;
  color:#222;
  background:#fff;
}
h1,h2,h3,h4,h5,h6{
  font-family:'Quicksand', sans-serif;
  color:var(--secondary);
}
a{
  text-decoration:none;
}
.navbar{
  background:#fff;
  border-bottom:1px solid #e0e0e0;
  border-radius:0;
}
.navbar-brand{
  display:flex;
  align-items:center;
  gap:0.6rem;
  font-family:'Quicksand', sans-serif;
  font-weight:700;
  color:var(--primary);
  font-size:1.25rem;
}
.navbar-brand img{
  width:60px;
  height:60px;
  object-fit:cover;
}
.navbar-nav .nav-link{
  color:var(--secondary);
  font-family:'Quicksand', sans-serif;
  font-weight:600;
  padding:0.5rem 1rem;
}
.navbar-nav .nav-link:hover{
  color:var(--accent);
}
.navbar-toggler{
  border-radius:0;
  border-color:var(--primary);
}

#contact-content {
  font-family: 'Libre Baskerville', serif;
  background: #ffffff;
  color: #222222;
  padding: 96px 0;
}
#contact-content h1, #contact-content h2, #contact-content h3 {
  font-family: 'Quicksand', sans-serif;
}
#contact-content .lead-text {
  max-width: 720px;
}
#contact-content .form-wrapper {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0;
  padding: 32px;
}
#contact-content .form-control {
  border-radius: 0;
  border: 1px solid hsl(228, 40%, 33%);
}
#contact-content .form-control:focus {
  border-color: hsl(78, 66%, 38%);
  box-shadow: 0 0 0 0.2rem rgba(153, 189, 32, 0.25);
}
#contact-content .btn-primary-custom {
  background-color: hsl(228, 40%, 33%);
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 12px 28px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
#contact-content .btn-primary-custom:hover {
  background-color: hsl(78, 66%, 38%);
  color: #1a1a1a;
}
#contact-content .info-card {
  background: hsl(18, 29%, 18%);
  color: #ffffff;
  border-radius: 0;
  padding: 32px;
  height: 100%;
}
#contact-content .info-card h3 {
  color: hsl(78, 66%, 38%);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
#contact-content .info-card a {
  color: #ffffff;
  text-decoration: underline;
}
#contact-content .info-card a:hover {
  color: hsl(78, 66%, 38%);
}
#contact-content .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contact-content .info-list li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
#contact-content .info-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#contact-content .info-label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(78, 66%, 38%);
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
#contact-content .map-link {
  color: hsl(78, 66%, 38%) !important;
  font-weight: 600;
}
#contact-content .section-divider {
  height: 4px;
  width: 60px;
  background: hsl(78, 66%, 38%);
  margin-bottom: 24px;
}
#contact-content .cta-box {
  background: hsl(228, 40%, 33%);
  color: #ffffff;
  padding: 40px;
  margin-top: 80px;
  text-align: center;
}
#contact-content .cta-box h2 {
  color: #ffffff;
}
#contact-content .cta-box .btn-accent {
  background-color: hsl(78, 66%, 38%);
  color: #1a1a1a;
  border: none;
  border-radius: 0;
  padding: 12px 32px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 16px;
}
#contact-content .cta-box .btn-accent:hover {
  background-color: #ffffff;
  color: hsl(228, 40%, 33%);
}
@media (max-width: 767px) {
  #contact-content {
    padding: 64px 0;
  }
  #contact-content .cta-box {
    margin-top: 56px;
    padding: 28px;
  }
}

footer {
  background-color: hsl(18, 29%, 18%);
  color: #f8f9fa;
  font-family: 'Libre Baskerville', serif;
  border-top: 4px solid hsl(78, 66%, 38%);
  padding: 80px 0 32px;
}
footer h5, footer h6 {
  font-family: 'Quicksand', sans-serif;
  color: #ffffff;
}
footer a {
  color: #f8f9fa;
  text-decoration: none;
}
footer a:hover {
  color: hsl(78, 66%, 38%);
  text-decoration: underline;
}
footer .footer-desc {
  color: #e0e0e0;
}
footer hr {
  border-color: rgba(255,255,255,0.2);
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: hsl(228, 40%, 33%);
  color: #ffffff;
  border-radius: 0;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
  background-color: hsl(78, 66%, 38%);
  color: hsl(18, 29%, 18%);
}
.footer-bottom {
  font-size: 0.9rem;
  color: #cccccc;
}

#privacyBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background-color: hsl(228, 40%, 33%);
  color: #ffffff;
  border-top: 4px solid hsl(78, 66%, 38%);
  font-family: 'Libre Baskerville', serif;
  padding: 16px 0;
  max-height: 60vh;
  overflow-y: auto;
}
#privacyBanner h6 {
  font-family: 'Quicksand', sans-serif;
  color: #ffffff;
  margin-bottom: 6px;
}
#privacyBanner p, #privacyBanner li {
  color: #f0f0f0;
  font-size: 0.85rem;
  margin-bottom: 4px;
}
#privacyBanner ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.cookie-btn {
  border-radius: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 8px 18px;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  width: 100%;
}
.btn-cookie-accept {
  background-color: hsl(78, 66%, 38%);
  color: hsl(18, 29%, 18%);
  border-color: hsl(78, 66%, 38%);
}
.btn-cookie-accept:hover {
  background-color: transparent;
  color: hsl(78, 66%, 38%);
  border-color: hsl(78, 66%, 38%);
}
.btn-cookie-reject {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn-cookie-reject:hover {
  background-color: #ffffff;
  color: hsl(228, 40%, 33%);
}
.cookie-link {
  color: hsl(78, 66%, 38%);
  font-size: 0.85rem;
  text-decoration: underline;
}
.cookie-link:hover {
  color: #ffffff;
}

#services-section {
  background: #f8f9fa;
  color: #222;
  font-family: 'Libre Baskerville', serif;
  padding: 96px 0;
}
#services-section h1, #services-section h2, #services-section h3 {
  font-family: 'Quicksand', sans-serif;
}
#services-section .page-header {
  margin-bottom: 64px;
}
#services-section .page-header h1 {
  color: hsl(228, 40%, 33%);
  font-weight: 700;
}
#services-section .page-header p {
  max-width: 760px;
  color: #333;
}
#services-section .service-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  padding: 28px;
  height: 100%;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
#services-section .service-card:hover {
  background: hsl(228, 40%, 33%);
  border-color: hsl(228, 40%, 33%);
  transform: translateY(-4px);
}
#services-section .service-card:hover h3,
#services-section .service-card:hover p,
#services-section .service-card:hover .price {
  color: #f8f9fa;
}
#services-section .service-card:hover .icon-wrap {
  background: hsl(78, 66%, 38%);
  color: hsl(18, 29%, 18%);
}
#services-section .icon-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: hsl(228, 40%, 33%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border-radius: 0;
}
#services-section .service-card h3 {
  font-size: 1.15rem;
  color: hsl(18, 29%, 18%);
  margin-bottom: 8px;
}
#services-section .service-card p {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
#services-section .price {
  font-weight: 700;
  color: hsl(228, 40%, 33%);
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
}
#services-section .details-block {
  margin-top: 96px;
}
#services-section .details-block h2 {
  color: hsl(228, 40%, 33%);
  margin-bottom: 24px;
}
#services-section table {
  background: #fff;
  border-collapse: collapse;
  width: 100%;
}
#services-section table th {
  background: hsl(228, 40%, 33%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 12px;
  text-align: left;
}
#services-section table td {
  padding: 12px;
  border-bottom: 1px solid #dcdcdc;
  color: #222;
}
#services-section .cta-box {
  margin-top: 96px;
  background: hsl(18, 29%, 18%);
  color: #f8f9fa;
  padding: 48px;
  text-align: center;
}
#services-section .cta-box h2 {
  color: #f8f9fa;
  margin-bottom: 16px;
}
#services-section .cta-box p {
  color: #f0ede9;
  margin-bottom: 24px;
}
#services-section .btn-accent {
  background: hsl(78, 66%, 38%);
  color: hsl(18, 29%, 18%);
  border: none;
  border-radius: 0;
  padding: 12px 32px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
#services-section .btn-accent:hover {
  background: #fff;
  color: hsl(18, 29%, 18%);
}

#about-section {
  font-family: 'Libre Baskerville', serif;
  color: #222;
  background-color: #fff;
  padding: 96px 0;
}
#about-section h1, #about-section h2, #about-section h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(228, 40%, 33%);
}
#about-section .lead-intro {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 48px;
}
#about-section .subheading-block {
  margin-bottom: 56px;
}
#about-section .subheading-block h2 {
  border-left: 5px solid hsl(78, 66%, 38%);
  padding-left: 16px;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
#about-section .subheading-block p {
  font-size: 1.02rem;
  line-height: 1.75;
}
#about-section img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid #ddd;
}
#about-section .img-caption {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
  font-style: italic;
}
#about-section .team-section {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 2px solid #e5e5e5;
}
#about-section .team-card {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 24px;
  height: 100%;
}
#about-section .team-card h4 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(228, 40%, 33%);
  margin-bottom: 4px;
  font-size: 1.15rem;
}
#about-section .team-card .role {
  color: hsl(78, 66%, 38%);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
#about-section .team-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0;
}
#about-section .values-list {
  list-style: none;
  padding-left: 0;
}
#about-section .values-list li {
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid #eee;
  position: relative;
  font-size: 1.02rem;
}
#about-section .values-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: hsl(78, 66%, 38%);
  font-weight: 700;
}
#about-section .cta-box {
  background-color: hsl(228, 40%, 33%);
  color: #fff;
  padding: 40px;
  margin-top: 80px;
  text-align: center;
}
#about-section .cta-box h2 {
  color: #fff;
  margin-bottom: 16px;
}
#about-section .cta-box p {
  color: #f0f0f0;
  margin-bottom: 24px;
}
#about-section .btn-cta {
  background-color: hsl(78, 66%, 38%);
  color: #1a1a1a;
  border: none;
  padding: 12px 32px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
}
#about-section .btn-cta:hover {
  background-color: hsl(78, 66%, 30%);
  color: #000;
}
#about-section .stats-row {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  padding: 32px;
  margin: 48px 0;
}
#about-section .stat-item {
  text-align: center;
  padding: 12px 0;
}
#about-section .stat-item .num {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(228, 40%, 33%);
  display: block;
}
#about-section .stat-item .lbl {
  font-size: 0.9rem;
  color: #555;
}
@media (max-width: 767px) {
  #about-section {
    padding: 64px 0;
  }
  #about-section .cta-box {
    padding: 28px 20px;
  }
}



  

  .thankyou-section {
    font-family: 'Libre Baskerville', serif;
    background: linear-gradient(135deg, hsl(228, 40%, 97%) 0%, hsl(78, 66%, 96%) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 1rem;
  }

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

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

  .thankyou-text {
    color: var(--secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .thankyou-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: hsl(78, 66%, 92%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem auto;
    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-info {
    background: hsl(228, 40%, 96%);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0;
    text-align: left;
  }

  .thankyou-info ul {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--secondary);
  }

  .thankyou-info li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }

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

  .btn-thankyou {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
  }

  .btn-thankyou:hover {
    background-color: hsl(228, 40%, 25%);
    border-color: hsl(228, 40%, 25%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }

  .thankyou-subtext {
    color: hsl(18, 15%, 45%);
    font-size: 0.95rem;
    margin-top: 1.5rem;
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2rem 1.25rem;
    }
    .thankyou-heading {
      font-size: 1.6rem;
    }
    .thankyou-text {
      font-size: 1rem;
    }
  }

.hero-section{
    background:#f8f9fa;
    color:#222;
    padding:80px 0;
    font-family:'Libre Baskerville', serif;
}
.hero-section h1{
    font-family:'Quicksand', sans-serif;
    font-weight:700;
    color:hsl(228, 40%, 33%);
    font-size:2.2rem;
    margin-bottom:0.75rem;
}
.hero-section h2{
    font-family:'Quicksand', sans-serif;
    font-weight:500;
    color:hsl(18, 29%, 18%);
    font-size:1.3rem;
    margin-bottom:1rem;
}
.hero-section p.lead-text{
    font-size:1rem;
    color:#333;
    margin-bottom:1.25rem;
}
.hero-hours{
    background:#fff;
    border:1px solid hsl(228, 40%, 33%);
    border-radius:0;
    padding:16px 20px;
    margin-bottom:1.5rem;
}
.hero-hours p{
    margin:0;
    font-size:0.95rem;
    color:#333;
}
.hero-hours i{
    color:hsl(78, 66%, 38%);
    margin-right:8px;
}
.hero-list{
    list-style:none;
    padding:0;
    margin-bottom:1.5rem;
}
.hero-list li{
    margin-bottom:0.6rem;
    font-size:0.98rem;
    color:#222;
}
.hero-list i{
    color:hsl(78, 66%, 38%);
    margin-right:10px;
}
.btn-hero-primary{
    background:hsl(78, 66%, 38%);
    color:#1a1a1a;
    border:2px solid hsl(78, 66%, 38%);
    border-radius:0;
    padding:12px 28px;
    font-family:'Quicksand', sans-serif;
    font-weight:600;
    text-decoration:none;
    display:inline-block;
    transition:all 0.25s ease;
}
.btn-hero-primary:hover{
    background:transparent;
    color:hsl(78, 66%, 38%);
}
.btn-hero-secondary{
    background:transparent;
    color:hsl(228, 40%, 33%);
    border:2px solid hsl(228, 40%, 33%);
    border-radius:0;
    padding:12px 28px;
    font-family:'Quicksand', sans-serif;
    font-weight:600;
    text-decoration:none;
    display:inline-block;
    transition:all 0.25s ease;
    margin-left:10px;
}
.btn-hero-secondary:hover{
    background:hsl(228, 40%, 33%);
    color:#fff;
}
.hero-img{
    aspect-ratio: 3 / 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius:0;
}
@media (max-width: 767px){
    .btn-hero-secondary{
        margin-left:0;
        margin-top:10px;
    }
}

#who-we-are {
  padding: 96px 0;
  background-color: #ffffff;
  color: #222222;
  font-family: 'Libre Baskerville', serif;
}
#who-we-are h2, #who-we-are h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(228, 40%, 33%);
}
#who-we-are p {
  line-height: 1.8;
  font-size: 1.03rem;
}
#who-we-are img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid #ddd;
}
#who-we-are .who-badge {
  background-color: hsl(78, 66%, 38%);
  color: #1a1a1a;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 16px;
  border-radius: 0;
}
#who-we-are .value-box {
  border-left: 4px solid hsl(78, 66%, 38%);
  padding: 12px 18px;
  margin-bottom: 16px;
  background-color: #f8f9fa;
  color: #222222;
}
#who-we-are .team-card {
  background-color: hsl(228, 40%, 33%);
  color: #ffffff;
  padding: 24px;
  border-radius: 0;
  height: 100%;
}
#who-we-are .team-card h4 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(78, 66%, 38%);
  margin-bottom: 4px;
}
#who-we-are .team-card .role {
  color: #f0f0f0;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#who-we-are .team-card p.desc {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 0;
}
#who-we-are .section-divider {
  width: 60px;
  height: 4px;
  background-color: hsl(78, 66%, 38%);
  margin: 16px 0 32px 0;
}
@media (max-width: 767px) {
  #who-we-are {
    padding: 64px 0;
  }
}

.services-section {
  padding: 96px 0;
  background: #f8f9fa;
  font-family: 'Libre Baskerville', serif;
  color: #222;
}
.services-section h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(228, 40%, 33%);
  font-weight: 700;
}
.services-section .lead-text {
  color: #333;
  max-width: 720px;
}
.service-list {
  margin-top: 56px;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 12px;
  border-bottom: 1px solid #d9d9d9;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.service-item:hover {
  background-color: #eef0e6;
  transform: translateX(4px);
}
.service-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(228, 40%, 33%);
  color: #fff;
  font-size: 1.6rem;
  border-radius: 0;
}
.service-item:hover .service-icon {
  background: hsl(78, 66%, 38%);
  color: hsl(18, 29%, 18%);
}
.service-content h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.15rem;
  color: hsl(18, 29%, 18%);
  margin-bottom: 6px;
  font-weight: 600;
}
.service-content p {
  font-size: 0.94rem;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.5;
}
.service-price {
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(228, 40%, 33%);
  border: 1px solid hsl(228, 40%, 33%);
  padding: 3px 12px;
  font-size: 0.9rem;
}
.service-item:hover .service-price {
  border-color: hsl(78, 66%, 38%);
  color: hsl(18, 29%, 18%);
  background: hsl(78, 66%, 38%);
}
@media (max-width: 767px) {
  .services-section { padding: 64px 0; }
  .service-list { margin-top: 40px; }
}

#assurance {
  padding: 80px 0;
  background-color: #f8f9fa;
  font-family: 'Libre Baskerville', serif;
  color: #222;
}
#assurance h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(228, 40%, 33%);
  font-weight: 700;
}
#assurance .lead-text {
  color: #333;
  max-width: 700px;
}
#assurance .assurance-card {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  padding: 22px 20px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#assurance .assurance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}
#assurance .assurance-icon {
  font-size: 1.6rem;
  color: hsl(78, 66%, 38%);
  margin-bottom: 12px;
}
#assurance .assurance-text {
  font-size: 0.98rem;
  color: #222;
  margin-bottom: 0;
  line-height: 1.4;
}
#assurance .wide-card {
  height: 100%;
}
@media (max-width: 767px) {
  #assurance {
    padding: 56px 0;
  }
}

#promo-section {
  background-color: #f5f5f5;
  padding: 96px 0;
  font-family: 'Libre Baskerville', serif;
  color: #222;
}
#promo-section h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(228, 40%, 33%);
  font-weight: 700;
}
#promo .promo-box {
  background-color: hsl(228, 40%, 33%);
  color: #f8f9fa;
  border-radius: 0;
  padding: 48px;
  border-left: 6px solid hsl(78, 66%, 38%);
}
#promo .promo-box p {
  color: #f8f9fa;
}
#promo .promo-date-block {
  background-color: hsl(18, 29%, 18%);
  color: #f8f9fa;
  border-radius: 0;
  padding: 24px 32px;
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
}
#promo .promo-date-block .date-label {
  font-size: 0.95rem;
  color: #f8f9fa;
  display: block;
  margin-bottom: 6px;
}
#promo .promo-date-block .date-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(78, 66%, 38%);
}
#promo .promo-list {
  list-style: none;
  padding-left: 0;
  margin-top: 32px;
}
#promo .promo-list li {
  margin-bottom: 16px;
  padding-left: 8px;
  color: #f8f9fa;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
#promo .promo-list li i {
  color: hsl(78, 66%, 38%);
  font-size: 1.3rem;
  margin-top: 2px;
}
#promo .btn-promo {
  background-color: hsl(78, 66%, 38%);
  color: hsl(18, 29%, 18%);
  border: none;
  border-radius: 0;
  padding: 14px 36px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 24px;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
#promo .btn-promo:hover {
  background-color: #f8f9fa;
  color: hsl(228, 40%, 33%);
}
@media (max-width: 767px) {
  #promo .promo-box {
    padding: 28px;
  }
  #promo .promo-date-block {
    display: block;
    text-align: center;
  }
}

#voices {
  padding: 96px 0;
  background: #f8f9fa;
  font-family: 'Libre Baskerville', serif;
  color: #222;
}
#voices h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(228, 40%, 33%);
  font-weight: 700;
}
#voices .lead-text {
  color: #333;
  max-width: 700px;
}
#voices .review-card {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#voices .review-card .stars {
  color: hsl(78, 66%, 38%);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
#voices .review-card .stars .empty {
  color: #c9c9c9;
}
#voices .review-card p.review-text {
  color: #333;
  font-size: 0.98rem;
  line-height: 1.6;
  flex-grow: 1;
}
#voices .review-card .reviewer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e5e5e5;
}
#voices .review-card .reviewer strong {
  font-family: 'Quicksand', sans-serif;
  color: hsl(228, 40%, 33%);
  display: block;
  font-size: 0.95rem;
}
#voices .review-card .reviewer span {
  color: hsl(18, 29%, 18%);
  font-size: 0.85rem;
}
#voices .review-card.short {
  padding: 20px 24px;
}
#voices .review-card.long {
  border-left: 4px solid hsl(228, 40%, 33%);
}
#voices .review-card.mid {
  border-left: 4px solid hsl(78, 66%, 38%);
}
#voices .stats-strip {
  background: hsl(228, 40%, 33%);
  color: #f8f9fa;
  padding: 20px 24px;
  margin-top: 56px;
}
#voices .stats-strip .num {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: hsl(78, 66%, 38%);
}
#voices .stats-strip .lbl {
  font-size: 0.85rem;
  color: #f0f0f0;
}
@media (max-width: 767px) {
  #voices { padding: 64px 0; }
}

#enquiry {
  font-family: 'Libre Baskerville', serif;
  color: #222;
  background-color: #f8f9fa;
  padding: 96px 0;
}
#enquiry h2, #enquiry h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(228, 40%, 33%);
}
#enquiry .form-label {
  font-weight: 600;
  color: #222;
}
#enquiry .form-control {
  border-radius: 0;
  border: 1px solid hsl(228, 40%, 33%);
}
#enquiry .form-control:focus {
  border-color: hsl(78, 66%, 38%);
  box-shadow: 0 0 0 0.2rem rgba(158, 199, 46, 0.25);
}
#enquiry .btn-primary {
  background-color: hsl(228, 40%, 33%);
  border-color: hsl(228, 40%, 33%);
  color: #fff;
  border-radius: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 12px 32px;
}
#enquiry .btn-primary:hover {
  background-color: hsl(78, 66%, 38%);
  border-color: hsl(78, 66%, 38%);
  color: hsl(18, 29%, 18%);
}
#enquiry .contact-card {
  background-color: hsl(228, 40%, 33%);
  color: #fff;
  padding: 40px;
  border-radius: 0;
  height: 100%;
}
#enquiry .contact-card h3 {
  color: #fff;
}
#enquiry .contact-card a {
  color: hsl(78, 66%, 38%);
  text-decoration: none;
}
#enquiry .contact-card a:hover {
  text-decoration: underline;
  color: #fff;
}
#enquiry .contact-card p {
  color: #f8f9fa;
  margin-bottom: 8px;
}
#enquiry .info-block {
  border-left: 3px solid hsl(78, 66%, 38%);
  padding-left: 16px;
  margin-bottom: 24px;
}
#enquiry .map-link {
  color: hsl(228, 40%, 33%);
  font-weight: 600;
  text-decoration: underline;
}
#enquiry .map-link:hover {
  color: hsl(78, 66%, 38%);
}
@media (max-width: 767px) {
  #enquiry {
    padding: 64px 0;
  }
  #enquiry .contact-card {
    margin-top: 32px;
  }
}

#legal {
  background-color: #f5f5f5;
  padding: 90px 0;
  font-family: 'Libre Baskerville', serif;
  color: #222;
}
#legal .disclaimer-box {
  background-color: #ffffff;
  border: 1px solid #d8d8d8;
  border-left: 6px solid hsl(228, 40%, 33%);
  border-radius: 0;
  padding: 40px;
}
#legal h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(228, 40%, 33%);
  font-weight: 700;
  margin-bottom: 20px;
}
#legal .bi-info-circle-fill {
  color: hsl(78, 66%, 38%);
  font-size: 2rem;
  margin-right: 15px;
  flex-shrink: 0;
}
#legal p {
  color: #333;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 0;
}
#legal .header-row {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
