@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@600;700;800&family=Crimson+Text:wght@400;600&display=swap');

:root {
  --primary: hsl(201, 66%, 41%);
  --secondary: hsl(215, 60%, 27%);
  --accent: hsl(21, 79%, 56%);
}

body {
  font-family: 'Crimson Text', serif;
  color: #222;
  background-color: #ffffff;
}
h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: 'Work Sans', sans-serif;
}
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}
.navbar-brand {
  color: hsl(215, 60%, 27%);
  font-weight: 700;
  font-size: 1.4rem;
}
.navbar-brand img {
  margin-right: 10px;
}
.navbar-nav .nav-link {
  color: #222;
  font-weight: 600;
  margin-left: 18px;
  border-radius: 0;
}
.navbar-nav .nav-link:hover {
  color: hsl(201, 66%, 41%);
}
.navbar-toggler {
  border-radius: 0;
}

footer {
  background: hsl(215, 60%, 27%);
  color: #f5f5f5;
  padding: 48px 0 24px;
  font-family: 'Crimson Text', serif;
  border-radius: 0;
}
footer h5 {
  font-family: 'Work Sans', sans-serif;
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
footer p, footer li, footer a {
  color: #e6eef5;
  font-size: 1rem;
}
footer a {
  text-decoration: none;
}
footer a:hover {
  color: hsl(21, 79%, 56%);
  text-decoration: underline;
}
footer ul {
  list-style: none;
  padding-left: 0;
}
footer ul li {
  margin-bottom: 8px;
}
.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 32px 0 16px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: hsl(201, 66%, 41%);
  color: #ffffff;
  margin-right: 10px;
  border-radius: 0;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}
.social-icons a:hover {
  background: hsl(21, 79%, 56%);
  color: #ffffff;
}
.copyright-line {
  font-size: 0.9rem;
  color: #cdd9e5;
}

#cookieStrip {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: hsl(215, 60%, 27%);
  color: #f5f5f5;
  z-index: 2000;
  border-top: 3px solid hsl(21, 79%, 56%);
  padding: 16px 0;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Crimson Text', serif;
}
#cookieStrip h6 {
  font-family: 'Work Sans', sans-serif;
  color: #ffffff;
  margin-bottom: 6px;
  font-size: 1.05rem;
}
#cookieStrip p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #e6eef5;
}
#cookieStrip .cookie-cats {
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: #dbe6f0;
}
#cookieStrip .cookie-cats strong {
  color: #ffffff;
}
.cookie-btn {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 0;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}
.btn-accept-all {
  background: hsl(21, 79%, 56%);
  color: #ffffff;
}
.btn-accept-all:hover {
  background: hsl(21, 79%, 46%);
  color: #ffffff;
}
.btn-reject-optional {
  background: hsl(201, 66%, 41%);
  color: #ffffff;
}
.btn-reject-optional:hover {
  background: hsl(201, 66%, 31%);
  color: #ffffff;
}
.cookie-manage-link {
  color: #cdd9e5;
  font-size: 0.85rem;
  text-decoration: underline;
}
.cookie-manage-link:hover {
  color: hsl(21, 79%, 56%);
}

#faq-section {
  font-family: 'Crimson Text', serif;
  background-color: #ffffff;
  color: #222222;
  padding: 50px 0;
}
#faq-section h1,
#faq-section h2,
#faq-section h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(215, 60%, 27%);
}
#faq-section .faq-intro {
  max-width: 780px;
  margin-bottom: 40px;
}
#faq-section .faq-steps {
  background-color: #f8f9fa;
  padding: 32px;
  margin-bottom: 48px;
  border-left: 4px solid hsl(201, 66%, 41%);
}
#faq-section .faq-steps ol {
  margin-bottom: 0;
  padding-left: 20px;
}
#faq-section .faq-steps li {
  margin-bottom: 12px;
}
#faq-section .accordion-item {
  border: 1px solid #dee2e6;
  border-radius: 0;
  margin-bottom: 8px;
}
#faq-section .accordion-button {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
  color: #222222;
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: none;
}
#faq-section .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: hsl(201, 66%, 41%);
  box-shadow: none;
}
#faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(201, 66%, 41%);
}
#faq-section .accordion-button::after {
  filter: none;
}
#faq-section .accordion-body {
  background-color: #ffffff;
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.6;
}
#faq-section .faq-cta {
  background-color: hsl(215, 60%, 27%);
  color: #ffffff;
  padding: 40px;
  margin-top: 48px;
  text-align: center;
}
#faq-section .faq-cta h2 {
  color: #ffffff;
}
#faq-section .faq-cta p {
  color: #f1f1f1;
  margin-bottom: 24px;
}
#faq-section .faq-cta .btn {
  background-color: hsl(21, 79%, 56%);
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 12px 32px;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
}
#faq-section .faq-cta .btn:hover {
  background-color: #c9601f;
  color: #ffffff;
}
#faq-section .badge-info {
  background-color: hsl(201, 66%, 41%);
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  padding: 6px 14px;
  margin-bottom: 24px;
  display: inline-block;
}

#contact-content {
  font-family: 'Crimson Text', serif;
  color: #222;
  background: #f8f9fa;
  padding: 50px 0;
}
#contact-content h1,
#contact-content h2,
#contact-content h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(215, 60%, 27%);
}
#contact-content .lead-text {
  font-size: 1.15rem;
  max-width: 700px;
}
#contact-content .form-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 32px;
}
#contact-content .form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
}
#contact-content .form-control:focus {
  border-color: hsl(201, 66%, 41%);
  box-shadow: none;
}
#contact-content label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  color: #222;
}
#contact-content .btn-primary {
  background-color: hsl(21, 79%, 56%);
  border-color: hsl(21, 79%, 56%);
  color: #fff;
  border-radius: 0;
  font-family: 'Work Sans', sans-serif;
  padding: 10px 28px;
}
#contact-content .btn-primary:hover {
  background-color: hsl(21, 79%, 46%);
  border-color: hsl(21, 79%, 46%);
  color: #fff;
}
#contact-content .info-card {
  background: hsl(215, 60%, 27%);
  color: #fff;
  border-radius: 0;
  padding: 32px;
}
#contact-content .info-card h3 {
  color: #fff;
}
#contact-content .info-card a {
  color: #fff;
  text-decoration: underline;
}
#contact-content .info-card a:hover {
  color: hsl(21, 79%, 56%);
}
#contact-content .info-item {
  margin-bottom: 18px;
}
#contact-content .info-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: hsl(21, 79%, 66%);
}
#contact-content .find-us-line {
  font-size: 0.98rem;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 16px;
  margin-top: 16px;
}
#contact-content .find-us-line a {
  color: hsl(21, 79%, 66%);
}
#contact-content .reply-note {
  background: #fff;
  border-left: 4px solid hsl(201, 66%, 41%);
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 0.98rem;
}
#contact-content .cta-block {
  background: hsl(201, 66%, 41%);
  color: #fff;
  padding: 28px;
  text-align: center;
  margin-top: 48px;
}
#contact-content .cta-block h2 {
  color: #fff;
}
#contact-content .cta-block .btn {
  background-color: hsl(21, 79%, 56%);
  border-color: hsl(21, 79%, 56%);
  color: #fff;
  border-radius: 0;
  font-family: 'Work Sans', sans-serif;
  padding: 10px 28px;
  margin-top: 10px;
}
#contact-content .cta-block .btn:hover {
  background-color: hsl(21, 79%, 46%);
  border-color: hsl(21, 79%, 46%);
}





.thankyou-section {
  font-family: 'Crimson Text', serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, hsl(201, 66%, 96%) 0%, hsl(215, 60%, 95%) 100%);
  padding: 3rem 1rem;
}

.thankyou-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(21, 60, 90, 0.15);
  padding: 3rem 2rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 576px) {
  .thankyou-card {
    padding: 4rem 3.5rem;
  }
}

.thankyou-heading {
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  color: var(--secondary);
  margin-top: 1.75rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

@media (min-width: 576px) {
  .thankyou-heading {
    font-size: 2.25rem;
  }
}

.thankyou-text {
  font-size: 1.15rem;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.thankyou-icon-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0.5rem 1.5rem hsla(201, 66%, 41%, 0.35);
  animation: popIn 0.5s ease-out;
}

.thankyou-icon-wrap svg {
  width: 52px;
  height: 52px;
  stroke: #ffffff;
}

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

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

.thankyou-info-box {
  background: hsl(201, 66%, 97%);
  border-left: 4px solid var(--accent);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  text-align: left;
  margin: 1.75rem 0;
}

.thankyou-info-box p {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: var(--secondary);
}

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

.thankyou-info-box i {
  color: var(--accent);
  margin-right: 0.6rem;
  width: 20px;
}

.btn-home {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  padding: 0.75rem 2.25rem;
  border-radius: 0.5rem;
  font-size: 1.05rem;
  transition: all 0.25s ease;
  box-shadow: 0 0.25rem 0.75rem hsla(201, 66%, 41%, 0.3);
}

.btn-home:hover,
.btn-home:focus {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem hsla(215, 60%, 27%, 0.35);
}

.hero-section {
    background-color: #f8f9fa;
    color: #222;
    padding: 50px 0;
    font-family: 'Crimson Text', serif;
  }
  .hero-section h1 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: hsl(215, 60%, 27%);
    font-size: 2.1rem;
    margin-bottom: 0.75rem;
  }
  .hero-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    color: hsl(201, 66%, 41%);
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .hero-section p.lead-text {
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }
  .hero-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
  }
  .hero-list li {
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
  }
  .hero-list li i {
    color: hsl(21, 79%, 56%);
    margin-right: 0.6rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
  }
  .hours-block {
    border: 1px solid hsl(201, 66%, 41%);
    border-radius: 0;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    background-color: #ffffff;
  }
  .hours-block p {
    margin-bottom: 0.3rem;
    font-size: 1rem;
  }
  .hours-block strong {
    color: hsl(215, 60%, 27%);
    font-family: 'Work Sans', sans-serif;
  }
  .btn-primary-custom {
    background-color: hsl(201, 66%, 41%);
    border: 1px solid hsl(201, 66%, 41%);
    color: #fff;
    border-radius: 0;
    padding: 0.65rem 1.5rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .btn-primary-custom:hover {
    background-color: hsl(215, 60%, 27%);
    border-color: hsl(215, 60%, 27%);
    color: #fff;
  }
  .btn-outline-custom {
    background-color: transparent;
    border: 1px solid hsl(215, 60%, 27%);
    color: hsl(215, 60%, 27%);
    border-radius: 0;
    padding: 0.65rem 1.5rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .btn-outline-custom:hover {
    background-color: hsl(215, 60%, 27%);
    color: #fff;
  }
  .hero-image {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  @media (max-width: 767px) {
    .hero-section {
      padding: 36px 0;
    }
  }

#story {
  padding: 52px 0;
  background: #ffffff;
  color: #222222;
  font-family: 'Crimson Text', serif;
}
#story h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(215, 60%, 27%);
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
#story h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(201, 66%, 41%);
  font-size: 1.3rem;
  margin-top: 1.6rem;
  margin-bottom: 0.7rem;
}
#story p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
#story img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 1.5rem;
}
#story .values-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#story .values-list li {
  border-left: 3px solid hsl(21, 79%, 56%);
  padding: 0.4rem 0.9rem;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}
#story .stats-box {
  background: #f5f5f5;
  padding: 1.2rem;
  margin-top: 1.5rem;
  border-left: 4px solid hsl(215, 60%, 27%);
}
#story .stats-box p {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.services-section {
  padding: 52px 0;
  background: #fff;
  font-family: 'Crimson Text', serif;
}
.services-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: #1a1a1a;
  font-weight: 600;
}
.services-section .lead-text {
  color: #333;
  font-size: 1.15rem;
  max-width: 700px;
}
.service-item {
  padding: 28px 20px;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.25s ease, padding-left 0.25s ease;
}
.service-row .service-item:nth-child(odd) {
  border-right: 1px solid #ddd;
}
@media (max-width: 767px) {
  .service-row .service-item:nth-child(odd) {
    border-right: none;
  }
}
.service-item:hover {
  background-color: #f5f9fb;
  padding-left: 28px;
}
.service-icon {
  font-size: 2rem;
  color: hsl(201, 66%, 41%);
  margin-bottom: 12px;
  transition: color 0.25s ease;
}
.service-item:hover .service-icon {
  color: hsl(21, 79%, 56%);
}
.service-item h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.25rem;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-item p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 12px;
}
.service-price {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #fff;
  background: hsl(215, 60%, 27%);
  padding: 6px 16px;
  border-radius: 0;
  font-size: 0.95rem;
}

#our-approach {
  padding: 52px 0;
  background: #f8f9fa;
  font-family: 'Crimson Text', serif;
}
#our-approach h2 {
  font-family: 'Work Sans', sans-serif;
  color: #222;
  font-weight: 600;
  font-size: 1.9rem;
}
#our-approach .section-intro {
  color: #333;
  font-size: 1.1rem;
  max-width: 640px;
}
#our-approach .approach-card {
  background: #fff;
  border: 1px solid #dfe3e6;
  border-radius: 0;
  padding: 20px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
#our-approach .approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
#our-approach .approach-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: hsl(201, 66%, 41%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
#our-approach .approach-text {
  color: #222;
  font-size: 1.05rem;
  line-height: 1.4;
  margin: 0;
}
#our-approach .wide-card {
  border-left: 3px solid hsl(21, 79%, 56%);
}

#testimonials {
  padding: 52px 0;
  background: #f8f9fa;
  font-family: 'Crimson Text', serif;
  color: #222;
}
#testimonials h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(215, 60%, 27%);
  font-weight: 700;
}
#testimonials .lead-sub {
  font-size: 1.15rem;
  color: #333;
  max-width: 700px;
}
#testimonials .review-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#testimonials .review-card .stars {
  color: hsl(21, 79%, 56%);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
#testimonials .review-card .review-text {
  flex-grow: 1;
  font-size: 1.08rem;
  line-height: 1.5;
  margin-bottom: 14px;
}
#testimonials .review-card .review-author {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(201, 66%, 41%);
  font-size: 0.98rem;
}
#testimonials .review-card .review-location {
  font-size: 0.9rem;
  color: #555;
}
#testimonials .review-card.compact {
  padding: 18px 24px;
}
#testimonials .review-card.highlight {
  background: hsl(215, 60%, 27%);
  border: none;
}
#testimonials .review-card.highlight .review-text, #testimonials .review-card.highlight .review-location {
  color: #f0f4f8;
}
#testimonials .review-card.highlight .review-author {
  color: #fff;
}
#testimonials .review-card.highlight .stars {
  color: hsl(21, 79%, 56%);
}
#testimonials .stats-strip {
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  padding: 20px 0;
  margin-bottom: 40px;
}
#testimonials .stats-strip .stat-num {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: hsl(201, 66%, 41%);
}
#testimonials .stats-strip .stat-label {
  font-size: 0.95rem;
  color: #444;
}
@media (max-width: 767px) {
  #testimonials .review-card { margin-bottom: 4px; }
}

#contact {
  background: #f8f9fa;
  padding: 52px 0;
  font-family: 'Crimson Text', serif;
  color: #222;
}
#contact h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(215, 60%, 27%);
  font-weight: 600;
  margin-bottom: 12px;
}
#contact p.lead-text {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 28px;
}
#contact .contact-form-wrap {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 32px;
}
#contact .contact-form-wrap label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  color: #222;
  margin-bottom: 6px;
}
#contact .contact-form-wrap .form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
  padding: 10px 12px;
}
#contact .contact-form-wrap .form-control:focus {
  border-color: hsl(201, 66%, 41%);
  box-shadow: 0 0 0 0.2rem hsla(201, 66%, 41%, 0.2);
}
#contact .btn-submit {
  background: hsl(21, 79%, 56%);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 12px 32px;
  font-size: 1.05rem;
}
#contact .btn-submit:hover {
  background: hsl(21, 79%, 46%);
  color: #fff;
}
#contact .contact-info-block {
  background: hsl(215, 60%, 27%);
  color: #fff;
  padding: 32px;
  border-radius: 0;
  height: 100%;
}
#contact .contact-info-block h3 {
  font-family: 'Work Sans', sans-serif;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
#contact .contact-info-block p {
  margin-bottom: 8px;
  color: #f1f1f1;
}
#contact .contact-info-block a {
  color: #fff;
  text-decoration: underline;
}
#contact .contact-info-block a:hover {
  color: hsl(21, 79%, 56%);
}
#contact .contact-info-item {
  margin-bottom: 22px;
}
#contact .contact-info-item strong {
  display: block;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
}
#contact .find-us-line {
  font-size: 0.95rem;
  color: #dde;
  margin-top: 6px;
}
#contact .find-us-line a {
  color: hsl(21, 79%, 56%);
  font-weight: 600;
}
@media (max-width: 767px) {
  #contact .contact-form-wrap, #contact .contact-info-block {
    padding: 22px;
  }
}

#important {
  font-family: 'Crimson Text', serif;
  background-color: #f8f9fa;
  padding: 48px 0;
  border-top: 1px solid #dee2e6;
}
#important h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(215, 60%, 27%);
  font-weight: 600;
}
#important .icon-wrap {
  color: hsl(201, 66%, 41%);
  font-size: 2rem;
  flex-shrink: 0;
}
#important p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}
#important .disclaimer-box {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-left: 4px solid hsl(21, 79%, 56%);
  border-radius: 0;
  padding: 32px;
}

#about-content {
  font-family: 'Crimson Text', serif;
  color: #222;
  background: #ffffff;
  padding: 52px 0;
}
#about-content h1,
#about-content h2,
#about-content h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(215, 60%, 27%);
}
#about-content .lead-text {
  font-size: 1.2rem;
  line-height: 1.7;
}
#about-content img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}
#about-content .block {
  margin-bottom: 50px;
}
#about-content .stat-box {
  background: hsl(201, 66%, 41%);
  color: #ffffff;
  padding: 22px 16px;
  text-align: center;
  border-radius: 0;
}
#about-content .stat-box .num {
  font-family: 'Work Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  display: block;
  color: #ffffff;
}
#about-content .stat-box .label {
  font-size: 0.95rem;
  color: #f0f0f0;
}
#about-content .value-item {
  border-left: 4px solid hsl(21, 79%, 56%);
  padding: 10px 18px;
  margin-bottom: 18px;
  background: #f8f9fa;
}
#about-content .value-item h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}
#about-content .step-item {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
}
#about-content .step-number {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #ffffff;
  background: hsl(215, 60%, 27%);
  min-width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#about-content .step-text h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
#about-content hr {
  border-top: 1px solid #ddd;
  margin: 44px 0;
}
#about-content .cta-box {
  background: hsl(215, 60%, 27%);
  color: #ffffff;
  padding: 36px;
  text-align: center;
}
#about-content .cta-box h2 {
  color: #ffffff;
}
#about-content .cta-box p {
  color: #eaeaea;
}
#about-content .btn-accent {
  background: hsl(21, 79%, 56%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-family: 'Work Sans', sans-serif;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
}
#about-content .btn-accent:hover {
  background: hsl(21, 79%, 46%);
  color: #ffffff;
}
#about-content a {
  color: hsl(201, 66%, 41%);
}
@media (max-width: 767px) {
  #about-content .step-item {
    flex-direction: column;
  }
}

#services-page {
  font-family: 'Crimson Text', serif;
  color: #222;
  background: #ffffff;
  padding: 52px 0;
}
#services-page h1, #services-page h2, #services-page h3, #services-page h4 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(215, 60%, 27%);
}
#services-page .page-header {
  margin-bottom: 48px;
}
#services-page .page-header p {
  font-size: 1.15rem;
  max-width: 720px;
}
#services-page .card {
  border: 1px solid #ddd;
  border-radius: 0;
  height: 100%;
  padding: 28px;
  background: #fff;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
#services-page .card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transform: translateY(-4px);
  border-color: hsl(201, 66%, 41%);
}
#services-page .icon-box {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(201, 66%, 41%);
  color: #fff;
  margin-bottom: 16px;
}
#services-page .icon-box i {
  font-size: 1.6rem;
}
#services-page .price-tag {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #fff;
  background: hsl(21, 79%, 56%);
  padding: 6px 14px;
  margin-top: 12px;
}
#services-page .card p.desc {
  font-size: 1.05rem;
  line-height: 1.5;
}
#services-page .card ul.terms {
  margin: 0 0 12px 0;
  padding-left: 18px;
  font-size: 0.95rem;
  color: #444;
}
#services-page .process-block {
  background: #f5f5f5;
  padding: 40px;
  margin-top: 48px;
}
#services-page .process-block h2 {
  margin-bottom: 24px;
}
#services-page .step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
#services-page .step-number {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: #fff;
  background: hsl(215, 60%, 27%);
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#services-page .step-text h4 {
  margin-bottom: 4px;
  font-size: 1.1rem;
}
#services-page .step-text p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #333;
}
#services-page .cta-strip {
  margin-top: 48px;
  padding: 36px;
  background: hsl(201, 66%, 41%);
  text-align: center;
}
#services-page .cta-strip h2 {
  color: #fff;
}
#services-page .cta-strip p {
  color: #eaf3fa;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
#services-page .cta-strip .btn {
  background: hsl(21, 79%, 56%);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 12px 30px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
}
#services-page .cta-strip .btn:hover {
  background: #fff;
  color: hsl(215, 60%, 27%);
}
@media (max-width: 767px) {
  #services-page .process-block {
    padding: 24px;
  }
  #services-page .cta-strip {
    padding: 24px;
  }
}
