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

:root {
  --primary: hsl(241, 52%, 37%);
  --secondary: hsl(269, 47%, 20%);
  --accent: hsl(217, 59%, 59%);
}

body{
  font-family: 'Playfair Display', serif;
  color: #222;
  background-color: #fff;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Ubuntu', sans-serif;
}
.navbar{
  background-color: #fff;
  border-bottom: 1px solid #eee;
}
.navbar-brand{
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand img{
  border-radius: 8px;
}
.navbar-nav .nav-link{
  color: #222;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background-color 0.2s, color 0.2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus{
  color: var(--primary);
  background-color: #f2f1fa;
}
.navbar-toggler{
  border-color: var(--primary);
}
.navbar-toggler-icon{
  filter: none;
}



  

  .thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 55%, var(--accent) 100%);
    padding: 3rem 1rem;
    font-family: 'Playfair Display', serif;
  }

  .thankyou-card {
    background: #fff;
    border-radius: 1rem;
    padding: 3rem 2.5rem;
    max-width: 620px;
    width: 100%;
    text-align: center;
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.25);
    animation: fadeUp 0.7s ease-out;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .success-icon-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1.5rem rgba(74, 58, 173, 0.35);
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
  }

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

  .success-icon-wrap svg {
    width: 52px;
    height: 52px;
    stroke: #fff;
  }

  .thankyou-heading {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
  }

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

  .thankyou-highlight {
    display: inline-block;
    background: hsla(217, 59%, 59%, 0.12);
    color: var(--primary);
    font-weight: 600;
    padding: 0.85rem 1.25rem;
    border-radius: 0.6rem;
    font-size: 1rem;
    margin: 1.5rem 0;
    font-family: 'Ubuntu', sans-serif;
  }

  .btn-home {
    font-family: 'Ubuntu', sans-serif;
    background-color: var(--primary);
    border: none;
    color: #fff;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 0.4rem 1rem rgba(74, 58, 173, 0.3);
  }

  .btn-home:hover {
    background-color: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0.6rem 1.4rem rgba(58, 33, 96, 0.4);
  }

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

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

footer {
  background: hsl(269, 47%, 20%);
  color: #f5f5f5;
  font-family: 'Playfair Display', serif;
  padding: 48px 0 24px;
}
footer h5, footer h6 {
  font-family: 'Ubuntu', sans-serif;
  color: #ffffff;
  margin-bottom: 16px;
}
footer a {
  color: #e0e0f0;
  text-decoration: none;
}
footer a:hover {
  color: hsl(217, 59%, 59%);
  text-decoration: underline;
}
footer p, footer li {
  color: #e0e0f0;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: hsl(241, 52%, 37%);
  color: #ffffff;
  border-radius: 8px;
  margin-right: 8px;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}
.footer-social a:hover {
  background: hsl(217, 59%, 59%);
  color: #ffffff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 32px;
  padding-top: 16px;
  font-size: 0.9rem;
  color: #d0d0e5;
}
.footer-bottom a {
  color: #d0d0e5;
}
.footer-bottom a:hover {
  color: hsl(217, 59%, 59%);
}

#privacyNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 3px solid hsl(241, 52%, 37%);
  z-index: 1050;
  padding: 16px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Playfair Display', serif;
  border-radius: 10px 10px 0 0;
}
#privacyNotice h6 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(269, 47%, 20%);
  font-weight: 700;
  margin-bottom: 8px;
}
#privacyNotice p, #privacyNotice li {
  color: #333333;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
#privacyNotice ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.cookie-btn {
  font-family: 'Ubuntu', sans-serif;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  transition: all 0.3s ease;
  flex: 1;
}
.btn-accept-all {
  background: hsl(241, 52%, 37%);
  color: #ffffff;
}
.btn-accept-all:hover {
  background: hsl(217, 59%, 59%);
  color: #ffffff;
}
.btn-reject-optional {
  background: hsl(269, 47%, 20%);
  color: #ffffff;
}
.btn-reject-optional:hover {
  background: hsl(217, 59%, 59%);
  color: #ffffff;
}
.btn-manage {
  color: hsl(241, 52%, 37%);
  text-decoration: underline;
  font-size: 0.85rem;
  align-self: center;
}
.btn-manage:hover {
  color: hsl(217, 59%, 59%);
}

#contact-section {
  background: #f8f9fa;
  color: #222;
  padding: 52px 0;
  font-family: 'Playfair Display', serif;
}
#contact-section h1, #contact-section h2, #contact-section h3 {
  font-family: 'Ubuntu', sans-serif;
}
#contact-section .intro-block {
  max-width: 720px;
  margin-bottom: 40px;
}
#contact-section .intro-block h1 {
  color: hsl(241, 52%, 37%);
  font-size: 2rem;
  margin-bottom: 14px;
}
#contact-section .intro-block p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
}
#contact-section .form-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
#contact-section .form-card h2 {
  color: hsl(269, 47%, 20%);
  font-size: 1.5rem;
  margin-bottom: 20px;
}
#contact-section .form-label {
  color: #333;
  font-weight: 600;
}
#contact-section .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
}
#contact-section .form-control:focus {
  border-color: hsl(217, 59%, 59%);
  box-shadow: 0 0 0 0.2rem rgba(217, 59%, 59%, 0.25);
}
#contact-section .btn-submit {
  background: hsl(241, 52%, 37%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  transition: background 0.2s ease;
}
#contact-section .btn-submit:hover {
  background: hsl(269, 47%, 20%);
  color: #fff;
}
#contact-section .info-card {
  background: hsl(269, 47%, 20%);
  color: #f8f9fa;
  border-radius: 8px;
  padding: 32px;
  height: 100%;
}
#contact-section .info-card h2 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
#contact-section .info-card p, #contact-section .info-card li {
  color: #f0f0f5;
}
#contact-section .info-card a {
  color: hsl(217, 59%, 59%);
  text-decoration: underline;
}
#contact-section .info-card a:hover {
  color: #fff;
}
#contact-section .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
#contact-section .info-list li {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
#contact-section .info-list li strong {
  color: #fff;
  min-width: 90px;
  display: inline-block;
}
#contact-section .find-us {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 18px;
  margin-top: 18px;
  font-size: 0.95rem;
}
#contact-section .find-us a {
  color: hsl(217, 59%, 59%);
  font-weight: 600;
}
#contact-section .reply-note {
  background: #fff;
  border: 1px solid rgba(241,52%,37%,0.2);
  border-left: 4px solid hsl(217, 59%, 59%);
  border-radius: 6px;
  padding: 14px 18px;
  margin-top: 24px;
  font-size: 0.95rem;
  color: #333;
}
#contact-section .final-cta {
  text-align: center;
  margin-top: 48px;
}
#contact-section .final-cta a {
  background: hsl(217, 59%, 59%);
  color: #fff;
  border-radius: 8px;
  padding: 14px 36px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}
#contact-section .final-cta a:hover {
  background: hsl(241, 52%, 37%);
  color: #fff;
}
@media (max-width: 767px) {
  #contact-section .form-card, #contact-section .info-card {
    padding: 22px;
  }
}

#faq-content {
  font-family: 'Playfair Display', serif;
  color: #262626;
  background: #f8f9fa;
  padding: 52px 0;
}
#faq-content h1, #faq-content h2, #faq-content h3 {
  font-family: 'Ubuntu', sans-serif;
}
#faq-content .faq-header {
  margin-bottom: 40px;
}
#faq-content .faq-header h1 {
  color: hsl(241, 52%, 37%);
  font-weight: 700;
}
#faq-content .faq-header p {
  color: #333;
  font-size: 1.05rem;
  max-width: 780px;
}
#faq-content .accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
#faq-content .accordion-button {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  color: hsl(269, 47%, 20%);
  background: #fff;
  border-radius: 8px;
}
#faq-content .accordion-button:not(.collapsed) {
  background: hsl(241, 52%, 37%);
  color: #fff;
  box-shadow: none;
}
#faq-content .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(74, 87, 173, 0.25);
}
#faq-content .accordion-button::after {
  filter: none;
}
#faq-content .accordion-body {
  background: #fff;
  color: #333;
  font-size: 1rem;
  line-height: 1.65;
}
#faq-content .steps-section {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  margin-top: 48px;
  border: 1px solid #e0e0e0;
}
#faq-content .steps-section h2 {
  color: hsl(241, 52%, 37%);
  margin-bottom: 24px;
  font-weight: 700;
}
#faq-content .step-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
#faq-content .step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: hsl(217, 59%, 59%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
}
#faq-content .step-text h3 {
  font-size: 1.05rem;
  color: hsl(269, 47%, 20%);
  margin-bottom: 4px;
}
#faq-content .step-text p {
  margin: 0;
  color: #333;
  font-size: 0.97rem;
}
#faq-content .cta-box {
  background: hsl(269, 47%, 20%);
  color: #fff;
  border-radius: 8px;
  padding: 36px;
  margin-top: 48px;
  text-align: center;
}
#faq-content .cta-box h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
#faq-content .cta-box p {
  color: #f1f1f1;
  margin-bottom: 20px;
}
#faq-content .cta-box .btn {
  background: hsl(217, 59%, 59%);
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
}
#faq-content .cta-box .btn:hover {
  background: #3d5a99;
  color: #fff;
}
@media (max-width: 576px) {
  #faq-content .steps-section, #faq-content .cta-box {
    padding: 20px;
  }
  #faq-content .step-item {
    flex-direction: column;
  }
}

#services-body {
  background: #f8f9fa;
  color: #222;
  font-family: 'Playfair Display', serif;
  padding: 50px 0;
}
#services-body h1, #services-body h2, #services-body h3, #services-body h4 {
  font-family: 'Ubuntu', sans-serif;
}
#services-body .page-header {
  margin-bottom: 48px;
}
#services-body .page-header h1 {
  color: hsl(241, 52%, 37%);
  font-weight: 700;
}
#services-body .page-header p {
  max-width: 760px;
  color: #333;
  font-size: 1.05rem;
}
#services-body .service-card {
  background: #fff;
  border: 1px solid #e2e2e6;
  border-radius: 8px;
  padding: 28px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#services-body .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(41, 32, 94, 0.15);
  border-color: hsl(217, 59%, 59%);
}
#services-body .service-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: hsl(241, 52%, 37%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
#services-body .service-card h3 {
  color: hsl(269, 47%, 20%);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
#services-body .service-card p {
  font-size: 0.97rem;
  color: #333;
  margin-bottom: 16px;
}
#services-body .service-price {
  display: inline-block;
  background: hsl(217, 59%, 59%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.95rem;
}
#services-body .process-section {
  margin-top: 56px;
  background: #fff;
  border: 1px solid #e2e2e6;
  border-radius: 8px;
  padding: 32px;
}
#services-body .process-section h2 {
  color: hsl(241, 52%, 37%);
  margin-bottom: 24px;
  font-size: 1.6rem;
}
#services-body .step-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
#services-body .step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsl(269, 47%, 20%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
}
#services-body .step-item h4 {
  font-size: 1.05rem;
  color: hsl(269, 47%, 20%);
  margin-bottom: 4px;
}
#services-body .step-item p {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
}
#services-body .cta-box {
  margin-top: 48px;
  background: hsl(241, 52%, 37%);
  border-radius: 8px;
  padding: 36px;
  text-align: center;
  color: #fff;
}
#services-body .cta-box h2 {
  color: #fff;
  margin-bottom: 12px;
}
#services-body .cta-box p {
  color: #eef0fb;
  margin-bottom: 20px;
}
#services-body .cta-box .btn {
  background: hsl(217, 59%, 59%);
  border: none;
  color: #fff;
  padding: 10px 28px;
  border-radius: 6px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
}
#services-body .cta-box .btn:hover {
  background: #fff;
  color: hsl(241, 52%, 37%);
}
@media (max-width: 767px) {
  #services-body .process-section, #services-body .cta-box {
    padding: 22px;
  }
}

#about-page {
  background: #f8f9fa;
  color: #222;
  font-family: 'Playfair Display', serif;
  padding: 48px 0;
}
#about-page h1, #about-page h2, #about-page h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(241, 52%, 37%);
}
#about-page .intro-lead {
  font-size: 1.1rem;
  color: #333;
  max-width: 800px;
}
#about-page .about-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}
#about-page .content-block {
  margin-bottom: 40px;
}
#about-page .content-block h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  border-left: 4px solid hsl(217, 59%, 59%);
  padding-left: 12px;
}
#about-page .content-block p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #2b2b2b;
}
#about-page .team-section {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  margin-top: 48px;
}
#about-page .team-card {
  background: hsl(269, 47%, 20%);
  color: #f8f9fa;
  border-radius: 8px;
  padding: 22px;
  height: 100%;
}
#about-page .team-card h3 {
  color: #f8f9fa;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
#about-page .team-card .role {
  color: hsl(217, 59%, 59%);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
#about-page .team-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 0;
}
#about-page .cta-box {
  background: hsl(241, 52%, 37%);
  color: #f8f9fa;
  border-radius: 8px;
  padding: 36px;
  margin-top: 48px;
  text-align: center;
}
#about-page .cta-box h2 {
  color: #f8f9fa;
}
#about-page .cta-box p {
  color: #e8e8f5;
}
#about-page .cta-box .btn {
  background: hsl(217, 59%, 59%);
  color: #ffffff;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
}
#about-page .cta-box .btn:hover {
  background: #4a72b8;
  color: #ffffff;
}
#about-page .img-row {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  #about-page { padding: 32px 0; }
  #about-page .team-section { padding: 20px; }
  #about-page .cta-box { padding: 24px; }
}



.hero-section {
  background-color: #f8f9fa;
  padding: 50px 0;
  font-family: 'Playfair Display', serif;
}

.hero-section h1 {
  font-family: 'Ubuntu', sans-serif;
  color: var(--primary);
  font-weight: 700;
  font-size: 2.4rem;
}

.hero-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: var(--secondary);
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.hero-desc {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-bottom: 28px;
  padding: 14px 18px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.info-strip .info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-size: 0.95rem;
  font-weight: 500;
}

.info-strip .info-item i {
  color: var(--accent);
  font-size: 1.15rem;
}

.hero-buttons .btn {
  border-radius: 8px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  padding: 10px 26px;
  transition: all 0.25s ease;
}

.btn-primary-custom {
  background-color: var(--primary);
  border: 2px solid var(--primary);
  color: #ffffff;
}

.btn-primary-custom:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #ffffff;
}

.btn-outline-custom {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline-custom:hover {
  background-color: var(--primary);
  color: #ffffff;
}

.hero-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 1.9rem;
  }
  .hero-section h2 {
    font-size: 1.1rem;
  }
  .info-strip {
    flex-direction: column;
    gap: 10px;
  }
}

#about {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Playfair Display', serif;
  color: #222;
}
#about h2, #about h3, #about h5 {
  font-family: 'Ubuntu', sans-serif;
}
#about .section-heading {
  color: hsl(241, 52%, 37%);
  font-weight: 700;
  margin-bottom: 24px;
}
#about p {
  line-height: 1.7;
  font-size: 1.02rem;
}
#about .studio-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}
#about .values-list {
  list-style: none;
  padding-left: 0;
}
#about .values-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}
#about .values-list li:last-child {
  border-bottom: none;
}
#about .values-list strong {
  color: hsl(269, 47%, 20%);
}
#about .team-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  height: 100%;
}
#about .team-card h5 {
  color: hsl(241, 52%, 37%);
  margin-bottom: 4px;
  font-weight: 700;
}
#about .team-role {
  color: hsl(217, 59%, 59%);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
#about .stats-strip {
  background-color: hsl(269, 47%, 20%);
  color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-top: 40px;
}
#about .stats-strip .stat-number {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
}
#about .stats-strip .stat-label {
  font-size: 0.85rem;
  color: #e0dce8;
}

.services-section {
  padding: 52px 0;
  background: #f8f9fa;
}
.services-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(241, 52%, 37%);
  font-weight: 700;
}
.services-section .lead-text {
  font-family: 'Playfair Display', serif;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 28px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(41, 27, 92, 0.15);
  border-color: hsl(217, 59%, 59%);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: hsl(241, 52%, 37%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(269, 47%, 20%);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-family: 'Playfair Display', serif;
  color: #444;
  font-size: 0.98rem;
  line-height: 1.55;
}
.service-price {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: #fff;
  background: hsl(217, 59%, 59%);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
}
@media (max-width: 767px) {
  .services-section { padding: 40px 0; }
}

#working-with-us {
  padding: 48px 0;
  background-color: #f8f9fa;
  font-family: 'Playfair Display', serif;
}
#working-with-us h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(241, 52%, 37%);
  font-weight: 700;
  margin-bottom: 8px;
}
#working-with-us .lead-text {
  color: #333;
  margin-bottom: 32px;
  font-size: 1rem;
}
#working-with-us .work-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 18px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#working-with-us .work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(38, 27, 91, 0.12);
}
#working-with-us .work-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: hsl(217, 59%, 59%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
#working-with-us .work-card p {
  color: #222;
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.45;
}

#faq {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Playfair Display', serif;
  color: #222;
}
#faq h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(241, 52%, 37%);
  font-weight: 700;
  margin-bottom: 12px;
}
#faq p.lead-text {
  color: #333;
  margin-bottom: 32px;
}
#faq .accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
#faq .accordion-button {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  color: #fff;
  background-color: hsl(241, 52%, 37%);
  border-radius: 8px;
}
#faq .accordion-button:not(.collapsed) {
  background-color: hsl(269, 47%, 20%);
  color: #fff;
  box-shadow: none;
}
#faq .accordion-button:focus {
  box-shadow: 0 0 0 3px hsl(217, 59%, 59%, 0.4);
}
#faq .accordion-button::after {
  filter: brightness(0) invert(1);
}
#faq .accordion-body {
  background-color: #ffffff;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 0 0 8px 8px;
}
#faq .accordion-button.collapsed {
  color: #fff;
  background-color: hsl(241, 52%, 37%);
}

#voices {
  padding: 52px 0;
  background: #f8f9fa;
  font-family: 'Playfair Display', serif;
}
#voices h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(241, 52%, 37%);
  font-weight: 700;
}
#voices .lead-text {
  color: #333;
  max-width: 680px;
}
#voices .review-card {
  background: #fff;
  border-radius: 8px;
  padding: 22px 20px;
  height: 100%;
  border: 1px solid #e3e3e8;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}
#voices .review-card .stars {
  color: hsl(217, 59%, 59%);
  font-size: 0.95rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
#voices .review-card .stars .empty {
  color: #d8d8e0;
}
#voices .review-card p.review-text {
  color: #2c2c2c;
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
}
#voices .review-footer {
  border-top: 1px solid #eee;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#voices .reviewer-name {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  color: hsl(269, 47%, 20%);
  font-size: 0.95rem;
  margin: 0;
}
#voices .reviewer-loc {
  color: #666;
  font-size: 0.82rem;
  margin: 0;
}
#voices .badge-rating {
  background: hsl(241, 52%, 37%);
  color: #fff;
  font-size: 0.78rem;
  border-radius: 6px;
  padding: 3px 9px;
  font-family: 'Ubuntu', sans-serif;
}
#voices .review-card.tall {
  background: hsl(241, 52%, 37%);
  color: #fff;
}
#voices .review-card.tall p.review-text {
  color: #f1f1fa;
}
#voices .review-card.tall .reviewer-name {
  color: #fff;
}
#voices .review-card.tall .reviewer-loc {
  color: #d8d8ea;
}
#voices .review-card.tall .review-footer {
  border-top: 1px solid rgba(255,255,255,0.2);
}
#voices .review-card.tall .stars {
  color: #fff;
}
#voices .review-card.tall .stars .empty {
  color: rgba(255,255,255,0.35);
}
#voices .summary-strip {
  background: hsl(269, 47%, 20%);
  border-radius: 8px;
  color: #fff;
  padding: 18px 22px;
  margin-bottom: 36px;
}
#voices .summary-strip .num {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: hsl(217, 59%, 59%);
}
#voices .summary-strip .label {
  font-size: 0.85rem;
  color: #e4e0f0;
}
@media (max-width: 767px) {
  #voices { padding: 40px 0; }
}

#reach-us {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Playfair Display', serif;
  color: #222;
}
#reach-us h2, #reach-us h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(241, 52%, 37%);
}
#reach-us .contact-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  height: 100%;
}
#reach-us .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Playfair Display', serif;
}
#reach-us .form-label {
  font-family: 'Ubuntu', sans-serif;
  color: #333;
  font-weight: 500;
}
#reach-us .btn-primary {
  background-color: hsl(241, 52%, 37%);
  border-color: hsl(241, 52%, 37%);
  border-radius: 8px;
  font-family: 'Ubuntu', sans-serif;
  padding: 10px 28px;
  color: #fff;
}
#reach-us .btn-primary:hover {
  background-color: hsl(269, 47%, 20%);
  border-color: hsl(269, 47%, 20%);
}
#reach-us .info-block {
  background-color: hsl(241, 52%, 37%);
  border-radius: 8px;
  padding: 32px;
  color: #f8f9fa;
  height: 100%;
}
#reach-us .info-block h3 {
  color: #f8f9fa;
}
#reach-us .info-block a {
  color: hsl(217, 59%, 79%);
  text-decoration: none;
}
#reach-us .info-block a:hover {
  color: #ffffff;
  text-decoration: underline;
}
#reach-us .info-line {
  margin-bottom: 14px;
  font-size: 1rem;
}
#reach-us .map-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.95rem;
}
@media (max-width: 767px) {
  #reach-us .contact-card, #reach-us .info-block {
    margin-bottom: 24px;
  }
}

#important {
  font-family: 'Playfair Display', serif;
  background-color: #f8f9fa;
  padding: 48px 0;
}
#important h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(241, 52%, 37%);
  font-weight: 700;
}
#important .disclaimer-box {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 32px;
}
#important .bi-info-circle-fill {
  color: hsl(217, 59%, 59%);
  font-size: 2rem;
}
#important p {
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}
