@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;700;800&family=Raleway:wght@400;500;600&display=swap');

:root {
  --primary: hsl(249, 50%, 37%);
  --secondary: hsl(277, 45%, 17%);
  --accent: hsl(225, 62%, 67%);
}

body{
  font-family: 'Raleway', sans-serif;
  color: #222;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Inter', sans-serif;
}
.navbar{
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding-top: .75rem;
  padding-bottom: .75rem;
}
.navbar-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
}
.navbar-brand img{
  border-radius: 12px;
}
.navbar-nav .nav-link{
  color: #222;
  font-weight: 600;
  padding: .5rem 1rem;
}
.navbar-nav .nav-link:hover{
  color: var(--primary);
}
.navbar-toggler{
  border-color: var(--primary);
}
.navbar-toggler-icon{
  filter: none;
}

footer.site-footer {
  background: hsl(277, 45%, 17%);
  color: #f5f5f5;
  font-family: 'Raleway', sans-serif;
  padding: 52px 0 24px;
  border-radius: 24px 24px 0 0;
}
footer.site-footer h5, footer.site-footer h6 {
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  margin-bottom: 16px;
}
footer.site-footer a {
  color: #e6e6f0;
  text-decoration: none;
}
footer.site-footer a:hover {
  color: hsl(225, 62%, 67%);
}
footer.site-footer p {
  color: #d8d8e6;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: hsl(249, 50%, 37%);
  color: #ffffff;
  margin-right: 10px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.footer-social a:hover {
  background: hsl(225, 62%, 67%);
  color: hsl(277, 45%, 17%);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 32px;
  padding-top: 18px;
  font-size: 0.9rem;
  color: #cfcfe0;
}
.footer-bottom a {
  color: #cfcfe0;
}
.footer-bottom a:hover {
  color: hsl(225, 62%, 67%);
}

#privacyNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: hsl(277, 45%, 17%);
  color: #f5f5f5;
  font-family: 'Raleway', sans-serif;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  max-height: 60vh;
  overflow-y: auto;
  padding: 20px 0;
}
#privacyNotice h5 {
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
#privacyNotice p, #privacyNotice li {
  font-size: 0.85rem;
  color: #e6e6f0;
  margin-bottom: 6px;
}
#privacyNotice ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.cookie-btn {
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 10px 18px;
  font-size: 0.9rem;
  border: none;
  transition: all 0.25s ease;
  width: 100%;
}
.btn-accept-all {
  background: hsl(225, 62%, 67%);
  color: hsl(277, 45%, 17%);
}
.btn-accept-all:hover {
  background: hsl(249, 50%, 37%);
  color: #ffffff;
}
.btn-reject-optional {
  background: transparent;
  color: #f5f5f5;
  border: 2px solid hsl(225, 62%, 67%);
}
.btn-reject-optional:hover {
  background: hsl(225, 62%, 67%);
  color: hsl(277, 45%, 17%);
}
.cookie-manage-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: hsl(225, 62%, 67%);
  text-decoration: underline;
}
.cookie-manage-link:hover {
  color: #ffffff;
}

#contact-main {
  font-family: 'Raleway', sans-serif;
  background: #f8f9fa;
  color: #222;
  padding: 52px 0;
}
#contact-main h1, #contact-main h2, #contact-main h3 {
  font-family: 'Inter', sans-serif;
}
#contact-main .contact-header {
  margin-bottom: 40px;
}
#contact-main .contact-header h1 {
  color: hsl(249, 50%, 37%);
  font-weight: 700;
}
#contact-main .contact-header p {
  max-width: 700px;
  color: #333;
}
#contact-main .card {
  border-radius: 20px;
  border: none;
}
#contact-main .info-card {
  background: hsl(277, 45%, 17%);
  color: #f8f9fa;
  padding: 32px;
  height: 100%;
}
#contact-main .info-card h3 {
  color: #f8f9fa;
  margin-bottom: 20px;
  font-size: 1.25rem;
}
#contact-main .info-card p, #contact-main .info-card li {
  color: #e6e6f0;
}
#contact-main .info-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}
#contact-main .info-list li {
  margin-bottom: 14px;
  display: flex;
  gap: 10px;
}
#contact-main .info-list strong {
  color: #f8f9fa;
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}
#contact-main .info-list a {
  color: hsl(225, 62%, 67%);
  text-decoration: none;
}
#contact-main .info-list a:hover {
  text-decoration: underline;
}
#contact-main .hours-table {
  width: 100%;
  color: #e6e6f0;
  font-size: 0.92rem;
}
#contact-main .hours-table td {
  padding: 3px 0;
}
#contact-main .hours-table td:last-child {
  text-align: right;
}
#contact-main .directions-note {
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  margin-top: 20px;
  font-size: 0.92rem;
}
#contact-main .directions-note a {
  color: hsl(225, 62%, 67%);
  font-weight: 600;
}
#contact-main .form-card {
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  height: 100%;
}
#contact-main .form-card h3 {
  color: hsl(249, 50%, 37%);
  margin-bottom: 18px;
}
#contact-main .form-label {
  font-weight: 600;
  color: #222;
  font-size: 0.9rem;
}
#contact-main .form-control {
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 10px 14px;
}
#contact-main .form-control:focus {
  border-color: hsl(225, 62%, 67%);
  box-shadow: 0 0 0 0.2rem hsla(225, 62%, 67%, 0.25);
}
#contact-main textarea.form-control {
  min-height: 130px;
}
#contact-main .btn-submit {
  background: hsl(249, 50%, 37%);
  color: #f8f9fa;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
#contact-main .btn-submit:hover {
  background: hsl(277, 45%, 17%);
  color: #f8f9fa;
}
#contact-main .cta-strip {
  margin-top: 48px;
  background: hsl(249, 50%, 37%);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  color: #f8f9fa;
}
#contact-main .cta-strip h3 {
  color: #f8f9fa;
  margin-bottom: 12px;
}
#contact-main .cta-strip p {
  color: #e6e6f0;
  margin-bottom: 20px;
}
#contact-main .cta-strip .btn-cta {
  background: hsl(225, 62%, 67%);
  color: hsl(277, 45%, 17%);
  border: none;
  border-radius: 12px;
  padding: 12px 30px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
}
#contact-main .btn-cta:hover {
  background: #fff;
  color: hsl(277, 45%, 17%);
}



  .thankyou-section {
    font-family: 'Raleway', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(249, 50%, 37%) 0%, hsl(277, 45%, 17%) 100%);
    padding: 3rem 1rem;
  }

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

  .thankyou-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(225, 62%, 67%) 0%, hsl(249, 50%, 37%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pop-in 0.5s ease-out;
    box-shadow: 0 0.5rem 1.5rem hsla(249, 50%, 37%, 0.35);
  }

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

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

  .thankyou-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: hsl(277, 45%, 17%);
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .thankyou-text {
    color: #4a4a5a;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }

  .thankyou-highlight {
    background: hsla(225, 62%, 67%, 0.12);
    border-left: 4px solid hsl(225, 62%, 67%);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    text-align: left;
    margin: 1.75rem 0;
  }

  .thankyou-highlight p {
    margin-bottom: 0.5rem;
    color: hsl(277, 45%, 17%);
    font-weight: 500;
    font-size: 0.98rem;
  }

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

  .thankyou-highlight i {
    color: hsl(249, 50%, 37%);
    margin-right: 0.5rem;
  }

  .btn-thankyou {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    background-color: hsl(249, 50%, 37%);
    border: none;
    color: #ffffff;
    padding: 0.75rem 2.25rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.4rem 1rem hsla(249, 50%, 37%, 0.35);
  }

  .btn-thankyou:hover {
    background-color: hsl(277, 45%, 17%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0.6rem 1.4rem hsla(277, 45%, 17%, 0.4);
  }

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

.hero-vol {
  background: #f8f9fa;
  padding: 48px 0 52px;
  font-family: 'Raleway', sans-serif;
}
.hero-vol h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: hsl(249, 50%, 37%);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero-vol h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: hsl(277, 45%, 17%);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.hero-vol .hero-desc {
  color: #333;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 1.75rem;
}
.hero-vol .hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.hero-vol .hero-img-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.hero-vol .btn-hero {
  background-color: hsl(249, 50%, 37%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 18px;
  padding: 0.75rem 2rem;
  border: 2px solid hsl(249, 50%, 37%);
  transition: all 0.25s ease;
  font-size: 1.05rem;
}
.hero-vol .btn-hero:hover {
  background-color: hsl(225, 62%, 67%);
  border-color: hsl(225, 62%, 67%);
  color: hsl(277, 45%, 17%);
}
.hero-vol .bi {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}
@media (max-width: 576px) {
  .hero-vol h1 {
    font-size: 1.9rem;
  }
  .hero-vol h2 {
    font-size: 1.05rem;
  }
}

.services-section {
  padding: 56px 0;
  background: #f8f9fa;
  font-family: 'Raleway', sans-serif;
}
.services-section h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(249, 50%, 37%);
  font-weight: 700;
}
.services-section .lead-text {
  color: #333;
  max-width: 700px;
}
.services-list {
  border-top: 1px solid #ddd;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 20px;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 16px;
}
.service-item:hover {
  background-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46, 30, 100, 0.1);
}
.service-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: hsl(249, 50%, 37%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: background-color 0.3s ease;
}
.service-item:hover .service-icon {
  background: hsl(225, 62%, 67%);
}
.service-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: hsl(277, 45%, 17%);
  margin-bottom: 6px;
}
.service-content p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.service-price {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #fff;
  background: hsl(277, 45%, 17%);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
}
@media (max-width: 767px) {
  .service-item {
    padding: 20px 10px;
  }
}

#cases {
  padding: 52px 0;
  background: #f8f9fa;
  font-family: 'Raleway', sans-serif;
  color: #222;
}
#cases h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(249, 50%, 37%);
  font-weight: 700;
}
#cases .lead-text {
  color: #444;
  max-width: 720px;
}
#cases .case-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e9e9ee;
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
#cases .case-card:hover {
  box-shadow: 0 10px 24px rgba(35, 24, 74, 0.12);
  transform: translateY(-3px);
}
#cases .case-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ddd;
}
#cases .case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#cases .case-card-body {
  padding: 20px;
}
#cases .case-badge {
  display: inline-block;
  background: hsl(225, 62%, 67%);
  color: #1a1a2e;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
#cases .case-card-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: hsl(277, 45%, 17%);
  margin-bottom: 8px;
}
#cases .case-card-body p {
  font-size: 0.92rem;
  color: #4a4a4a;
  margin-bottom: 14px;
}
#cases .btn-case-detail {
  background: hsl(249, 50%, 37%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s ease;
}
#cases .btn-case-detail:hover {
  background: hsl(277, 45%, 17%);
  color: #fff;
}
#cases .modal-content {
  border-radius: 20px;
  border: none;
}
#cases .modal-header {
  background: hsl(249, 50%, 37%);
  color: #fff;
  border-radius: 20px 20px 0 0;
  border-bottom: none;
}
#cases .modal-header .btn-close {
  filter: brightness(0) invert(1);
}
#cases .modal-body img {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 16px;
}
#cases .modal-body .case-badge {
  margin-bottom: 12px;
}
#cases .modal-facts {
  background: #f4f4fa;
  border-radius: 14px;
  padding: 14px 18px;
  margin-top: 12px;
  font-size: 0.9rem;
  color: #333;
}

#why-us {
  padding: 56px 0;
  background: #f8f9fa;
  font-family: 'Raleway', sans-serif;
}

#why-us h2, #why-us h3 {
  font-family: 'Inter', sans-serif;
}

#why-us .section-heading {
  color: hsl(249, 50%, 37%);
  font-weight: 700;
  margin-bottom: 12px;
}

#why-us .section-sub {
  color: #444;
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

#why-us .advantage-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  border: 1px solid #eaeaea;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

#why-us .advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(60, 40, 120, 0.18);
  background: hsl(249, 50%, 37%);
}

#why-us .advantage-card:hover .icon-wrap {
  background: hsl(225, 62%, 67%);
}

#why-us .advantage-card:hover .icon-wrap i {
  color: hsl(277, 45%, 17%);
}

#why-us .advantage-card:hover h3,
#why-us .advantage-card:hover p {
  color: #fff;
}

#why-us .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: hsl(225, 62%, 67%, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

#why-us .icon-wrap i {
  font-size: 1.6rem;
  color: hsl(249, 50%, 37%);
  transition: color 0.3s ease;
}

#why-us .advantage-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: hsl(277, 45%, 17%);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

#why-us .advantage-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

@media (max-width: 767px) {
  #why-us {
    padding: 48px 0;
  }
}

#questions {
  padding: 52px 0;
  background-color: #f8f9fa;
  font-family: 'Raleway', sans-serif;
}
#questions h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(249, 50%, 37%);
}
#questions .lead-text {
  color: #333;
  max-width: 700px;
}
#questions .accordion-item {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 14px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
#questions .accordion-button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: hsl(277, 45%, 17%);
  background-color: #fff;
  border-radius: 18px;
  padding: 18px 22px;
}
#questions .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: hsl(249, 50%, 37%);
  box-shadow: none;
}
#questions .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
#questions .accordion-button::after {
  filter: none;
}
#questions .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
#questions .accordion-body {
  color: #333;
  padding: 18px 22px 22px;
  line-height: 1.65;
  font-size: 0.98rem;
}
#questions .accordion-body strong {
  color: hsl(249, 50%, 37%);
}
@media (max-width: 576px) {
  #questions .accordion-button {
    font-size: 0.95rem;
    padding: 14px 16px;
  }
  #questions .accordion-body {
    padding: 14px 16px 18px;
    font-size: 0.92rem;
  }
}

#get-in-touch {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
  color: #222;
}
#get-in-touch h2, #get-in-touch h3 {
  font-family: 'Inter', sans-serif;
  color: hsl(249, 50%, 37%);
}
#get-in-touch .contact-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  height: 100%;
}
#get-in-touch .info-card {
  background-color: hsl(249, 50%, 37%);
  color: #fff;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
}
#get-in-touch .info-card h3 {
  color: #fff;
}
#get-in-touch .info-card a {
  color: hsl(225, 62%, 67%);
  text-decoration: none;
  word-break: break-word;
}
#get-in-touch .info-card a:hover {
  color: #fff;
  text-decoration: underline;
}
#get-in-touch .info-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
#get-in-touch .info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#get-in-touch .info-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
  color: hsl(225, 62%, 67%);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#get-in-touch .form-control {
  border-radius: 14px;
  border: 1px solid #ccc;
  padding: 12px 16px;
  font-family: 'Raleway', sans-serif;
}
#get-in-touch .form-control:focus {
  border-color: hsl(225, 62%, 67%);
  box-shadow: 0 0 0 0.2rem hsla(225, 62%, 67%, 0.25);
}
#get-in-touch label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}
#get-in-touch .btn-submit {
  background-color: hsl(277, 45%, 17%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
#get-in-touch .btn-submit:hover {
  background-color: hsl(249, 50%, 37%);
  color: #fff;
}
#get-in-touch .map-link {
  display: inline-block;
  margin-top: 6px;
  color: hsl(225, 62%, 67%);
  font-size: 0.95rem;
}
#get-in-touch .map-link:hover {
  color: #fff;
}
#get-in-touch .reply-note {
  background-color: hsl(225, 62%, 67%);
  color: hsl(277, 45%, 17%);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 0.95rem;
  margin-top: 20px;
  font-weight: 600;
}

#legal-notice {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
  color: #222;
}
#legal-notice h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(249, 50%, 37%);
  font-weight: 700;
  margin-bottom: 24px;
}
#legal-notice .notice-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 36px 40px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
#legal-notice .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: hsl(225, 62%, 67%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#legal-notice .icon-wrap i {
  color: #ffffff;
  font-size: 1.6rem;
}
#legal-notice p {
  line-height: 1.75;
  color: #333;
  margin-bottom: 0;
  font-size: 1.02rem;
}

#services-content {
  font-family: 'Raleway', sans-serif;
  background: #f8f9fa;
  color: #222;
  padding: 52px 0;
}

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

#services-content .page-intro {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

#services-content .page-intro h1 {
  color: hsl(249, 50%, 37%);
  font-weight: 700;
  margin-bottom: 16px;
}

#services-content .page-intro p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
}

#services-content .service-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  border: 1px solid #e5e5e5;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  display: flex;
  flex-direction: column;
}

#services-content .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(38, 26, 82, 0.18);
  background: hsl(249, 50%, 37%);
}

#services-content .service-card:hover h3,
#services-content .service-card:hover p,
#services-content .service-card:hover .service-terms li {
  color: #f8f9fa !important;
}

#services-content .service-card:hover .icon-wrap {
  background: hsl(225, 62%, 67%);
  color: hsl(277, 45%, 17%);
}

#services-content .service-card:hover .price-tag {
  background: #fff;
  color: hsl(249, 50%, 37%);
}

#services-content .icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: hsl(225, 62%, 67%, 0.18);
  color: hsl(249, 50%, 37%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
  transition: background 0.25s ease, color 0.25s ease;
}

#services-content .service-card h3 {
  font-weight: 700;
  color: hsl(277, 45%, 17%);
  margin-bottom: 10px;
  font-size: 1.25rem;
}

#services-content .service-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.55;
  flex-grow: 1;
}

#services-content .service-terms {
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
  font-size: 0.85rem;
  color: #444;
}

#services-content .service-terms li {
  padding: 4px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

#services-content .service-terms li i {
  color: hsl(225, 62%, 67%);
}

#services-content .price-tag {
  display: inline-block;
  background: hsl(249, 50%, 37%);
  color: #fff;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 14px;
  font-size: 1rem;
  align-self: flex-start;
  margin-top: auto;
  transition: background 0.25s ease, color 0.25s ease;
}

#services-content .qa-section {
  margin-top: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

#services-content .qa-section h2 {
  color: hsl(249, 50%, 37%);
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
}

#services-content .qa-item {
  background: #fff;
  border-radius: 16px;
  padding: 20px 26px;
  margin-bottom: 14px;
  border: 1px solid #e5e5e5;
}

#services-content .qa-item h3 {
  font-size: 1.05rem;
  color: hsl(277, 45%, 17%);
  font-weight: 700;
  margin-bottom: 8px;
}

#services-content .qa-item p {
  color: #333;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}

#services-content .cta-box {
  margin-top: 52px;
  background: hsl(277, 45%, 17%);
  border-radius: 22px;
  padding: 40px 32px;
  text-align: center;
}

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

#services-content .cta-box p {
  color: #e6e2f0;
  margin-bottom: 22px;
  font-size: 1rem;
}

#services-content .cta-box a.btn {
  background: hsl(225, 62%, 67%);
  color: hsl(277, 45%, 17%);
  font-weight: 700;
  padding: 12px 34px;
  border-radius: 14px;
  border: none;
  font-size: 1rem;
  transition: background 0.25s ease, color 0.25s ease;
}

#services-content .cta-box a.btn:hover {
  background: #fff;
  color: hsl(249, 50%, 37%);
}

@media (max-width: 767px) {
  #services-content .service-card { padding: 24px; }
  #services-content .cta-box { padding: 32px 20px; }
}
