:root {
  --primary: hsl(36, 33%, 35%);
  --secondary: hsl(186, 31%, 21%);
  --accent: hsl(246, 43%, 53%);
  --surface: #f4f4f1;
  --color-primary: hsl(36, 33%, 35%);
  --color-secondary: hsl(186, 31%, 21%);
  --color-accent: hsl(246, 43%, 53%);
}

body{
  font-family: 'Source Sans Pro', sans-serif;
  background-color: var(--surface);
  color: #2b2b2b;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Montserrat', sans-serif;
}
.navbar{
  background-color: #ffffff;
  border-bottom: 1px solid #e5e3df;
}
.navbar-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.3rem;
}
.navbar-brand:hover{
  color: var(--accent);
}
.navbar .nav-link{
  color: #2b2b2b;
  font-weight: 600;
  margin-left: 8px;
  padding: 8px 12px !important;
  border-radius: 12px;
  transition: all .2s ease;
}
.navbar .nav-link:hover{
  color: #ffffff;
  background-color: var(--accent);
}
.navbar-toggler{
  border-radius: 12px;
}

#portfolio-content {
  background: #f4f4f1;
  padding: 56px 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #2b2b2b;
}
#portfolio-content h1,
#portfolio-content h2,
#portfolio-content h3,
#portfolio-content h5 {
  font-family: 'Montserrat', sans-serif;
}
#portfolio-content .page-intro {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}
#portfolio-content .page-intro h1 {
  color: hsl(186, 31%, 21%);
  font-weight: 700;
  margin-bottom: 16px;
}
#portfolio-content .page-intro p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
}
#portfolio-content .stats-strip {
  background: hsl(36, 33%, 35%);
  color: #fff;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 48px;
}
#portfolio-content .stats-strip .stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
}
#portfolio-content .stats-strip .stat-label {
  font-size: 0.9rem;
  color: #f1e9dd;
}
#portfolio-content .card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#portfolio-content .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
#portfolio-content .card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}
#portfolio-content .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio-content .badge-category {
  background: hsl(246, 43%, 53%);
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 10px;
}
#portfolio-content .card-body h3 {
  font-size: 1.15rem;
  color: hsl(186, 31%, 21%);
  font-weight: 700;
  margin-bottom: 10px;
}
#portfolio-content .card-body p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.5;
}
#portfolio-content .btn-detail {
  background: hsl(186, 31%, 21%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 10px;
}
#portfolio-content .btn-detail:hover {
  background: hsl(246, 43%, 53%);
  color: #fff;
}
#portfolio-content .modal-content {
  border-radius: 20px;
  border: none;
}
#portfolio-content .modal-header {
  background: hsl(186, 31%, 21%);
  color: #fff;
  border-radius: 20px 20px 0 0;
  border-bottom: none;
}
#portfolio-content .modal-header .btn-close {
  filter: invert(1);
}
#portfolio-content .modal-body img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}
#portfolio-content .modal-body .badge-category {
  margin-bottom: 12px;
}
#portfolio-content .qa-section {
  margin-top: 56px;
}
#portfolio-content .qa-section h2 {
  color: hsl(186, 31%, 21%);
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}
#portfolio-content .accordion-item {
  border: none;
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}
#portfolio-content .accordion-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsl(186, 31%, 21%);
  background: #fff;
}
#portfolio-content .accordion-button:not(.collapsed) {
  background: hsl(36, 33%, 35%);
  color: #fff;
  box-shadow: none;
}
#portfolio-content .accordion-button:focus {
  box-shadow: none;
}
#portfolio-content .accordion-body {
  color: #444;
  line-height: 1.6;
}
#portfolio-content .cta-box {
  background: hsl(246, 43%, 53%);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}
#portfolio-content .cta-box h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
#portfolio-content .cta-box p {
  color: #f1eefc;
  margin-bottom: 20px;
}
#portfolio-content .cta-box .btn-cta {
  background: #fff;
  color: hsl(246, 43%, 53%);
  border: none;
  border-radius: 14px;
  padding: 12px 30px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
#portfolio-content .cta-box .btn-cta:hover {
  background: hsl(36, 33%, 35%);
  color: #fff;
}

footer {
    background: hsl(186, 31%, 21%);
    color: #f4f4f1;
    font-family: 'Source Sans Pro', sans-serif;
    padding: 48px 0 24px;
    border-radius: 24px 24px 0 0;
  }
  footer h5, footer h6 {
    font-family: 'Montserrat', sans-serif;
    color: #f4f4f1;
    margin-bottom: 16px;
  }
  footer a {
    color: #e5e1d8;
    text-decoration: none;
  }
  footer a:hover {
    color: hsl(36, 33%, 65%);
    text-decoration: underline;
  }
  footer .footer-desc {
    color: #d9d6cd;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: hsl(36, 33%, 35%);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.1rem;
    transition: background 0.2s ease;
  }
  footer .social-icons a:hover {
    background: hsl(246, 43%, 53%);
    color: #fff;
  }
  footer hr {
    border-color: rgba(244,244,241,0.2);
    margin: 24px 0;
  }
  footer .bottom-bar {
    font-size: 0.85rem;
    color: #c9c6bd;
  }
  footer .bottom-bar a {
    color: #c9c6bd;
    margin-right: 12px;
  }
  footer .bottom-bar a:hover {
    color: #fff;
  }

  #privacyNotice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #f4f4f1;
    border-top: 3px solid hsl(246, 43%, 53%);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    padding: 18px 0;
    max-height: 60vh;
    overflow-y: auto;
    border-radius: 24px 24px 0 0;
  }
  #privacyNotice h5 {
    font-family: 'Montserrat', sans-serif;
    color: hsl(186, 31%, 21%);
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  #privacyNotice p, #privacyNotice li {
    color: #333;
    font-size: 0.88rem;
    margin-bottom: 6px;
  }
  #privacyNotice ul {
    padding-left: 18px;
    margin-bottom: 10px;
  }
  .consent-btn {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    border-radius: 16px;
    padding: 9px 18px;
    font-size: 0.9rem;
    border: none;
    transition: all 0.2s ease;
    flex: 1;
  }
  .btn-accept-all {
    background: hsl(246, 43%, 53%);
    color: #fff;
  }
  .btn-accept-all:hover {
    background: hsl(246, 43%, 43%);
    color: #fff;
  }
  .btn-reject-optional {
    background: hsl(36, 33%, 35%);
    color: #fff;
  }
  .btn-reject-optional:hover {
    background: hsl(36, 33%, 28%);
    color: #fff;
  }
  .btn-manage {
    color: hsl(186, 31%, 21%);
    text-decoration: underline;
    font-size: 0.85rem;
    align-self: center;
  }
  .btn-manage:hover {
    color: hsl(246, 43%, 53%);
  }

.hero-cold-sales {
  background-color: #f4f4f1;
  padding: 52px 0 40px;
}
.hero-cold-sales h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(186, 31%, 21%);
  font-size: 2.4rem;
  line-height: 1.2;
}
.hero-cold-sales h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: hsl(36, 33%, 35%);
  font-size: 1.3rem;
  margin-top: 12px;
}
.hero-cold-sales p {
  font-family: 'Source Sans Pro', sans-serif;
  color: #333333;
  font-size: 1.05rem;
  max-width: 700px;
  margin-top: 16px;
}
.hero-cold-sales .btn-hero {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background-color: hsl(246, 43%, 53%);
  color: #f8f9fa;
  border: none;
  border-radius: 18px;
  padding: 12px 32px;
  font-size: 1.05rem;
  margin-top: 22px;
  transition: background-color 0.25s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-cold-sales .btn-hero:hover {
  background-color: hsl(246, 43%, 40%);
  color: #ffffff;
  transform: translateY(-2px);
}
.hero-cold-sales .btn-hero i {
  font-size: 1.1rem;
}

.services-section{
  background:#f4f4f1;
  padding:56px 0;
  font-family:'Source Sans Pro',sans-serif;
}
.services-section h2{
  font-family:'Montserrat',sans-serif;
  color:hsl(186,31%,21%);
  font-weight:700;
}
.services-section .lead-text{
  color:#4a4a4a;
  max-width:720px;
  margin:0 auto;
}
.service-card{
  background:#fff;
  border-radius:20px;
  padding:32px 26px;
  height:100%;
  border:1px solid #e7e4dd;
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display:flex;
  flex-direction:column;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px rgba(36,33,21,0.12);
  border-color:hsl(36,33%,35%);
}
.service-icon{
  width:64px;
  height:64px;
  border-radius:16px;
  background:hsl(36,33%,35%);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  color:#fff;
  font-size:1.7rem;
  transition:background 0.25s ease;
}
.service-card:hover .service-icon{
  background:hsl(246,43%,53%);
}
.service-card h3{
  font-family:'Montserrat',sans-serif;
  font-size:1.15rem;
  color:hsl(186,31%,21%);
  font-weight:700;
  margin-bottom:10px;
}
.service-card p{
  color:#4f4f4f;
  font-size:0.96rem;
  line-height:1.55;
  flex-grow:1;
}
.service-terms{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid #edece6;
}
.service-price{
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  color:hsl(246,43%,53%);
  font-size:1.05rem;
}
.service-unit{
  font-size:0.82rem;
  color:#7a7a7a;
}
@media(max-width:767px){
  .service-card{padding:26px 20px;}
}

#works {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Source Sans Pro', sans-serif;
}
#works h2 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(186, 31%, 21%);
  font-weight: 700;
}
#works .lead-text {
  color: #444;
  max-width: 680px;
}
#works .work-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e7e5e0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#works .work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
#works .work-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}
#works .work-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#works .work-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#works .work-badge {
  display: inline-block;
  background: hsl(246, 43%, 53%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  align-self: flex-start;
  letter-spacing: 0.3px;
}
#works .work-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: hsl(186, 31%, 21%);
  margin-bottom: 10px;
  font-weight: 700;
}
#works .work-body p {
  color: #4a4a4a;
  font-size: 0.94rem;
  line-height: 1.5;
  flex-grow: 1;
}
#works .work-btn {
  margin-top: 14px;
  background: hsl(36, 33%, 35%);
  border: none;
  color: #fff;
  border-radius: 12px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  align-self: flex-start;
}
#works .work-btn:hover {
  background: hsl(36, 33%, 28%);
  color: #fff;
}
#works .modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}
#works .modal-header {
  background: hsl(186, 31%, 21%);
  border-bottom: none;
}
#works .modal-title {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  font-weight: 700;
}
#works .modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}
#works .modal-body img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}
#works .modal-body p {
  color: #444;
  line-height: 1.6;
}
#works .modal-badge {
  display: inline-block;
  background: hsl(246, 43%, 53%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

#in-numbers {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Source Sans Pro', sans-serif;
}

#in-numbers .section-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(186, 31%, 21%);
  margin-bottom: 12px;
}

#in-numbers .section-sub {
  color: #444;
  max-width: 640px;
  margin: 0 auto 40px auto;
}

#in-numbers .stat-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#in-numbers .stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

#in-numbers .stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: hsl(246, 43%, 53%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px auto;
}

#in-numbers .stat-card:nth-child(2) .stat-icon {
  background-color: hsl(36, 33%, 35%);
}

#in-numbers .stat-card:nth-child(3) .stat-icon {
  background-color: hsl(186, 31%, 21%);
}

#in-numbers .stat-card:nth-child(4) .stat-icon {
  background-color: hsl(246, 43%, 53%);
}

#in-numbers .stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: hsl(186, 31%, 21%);
  display: inline-block;
  animation: countPop 0.6s ease-out;
}

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

#in-numbers .stat-label {
  font-weight: 600;
  color: #333;
  margin-top: 6px;
}

#in-numbers .stat-context {
  color: #666;
  font-size: 0.9rem;
  margin-top: 4px;
}

#reach-us {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #2a2a2a;
}
#reach-us h2, #reach-us h3 {
  font-family: 'Montserrat', sans-serif;
}
#reach-us .contact-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
#reach-us .info-card {
  background-color: hsl(186, 31%, 21%);
  color: #f7f6f3;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
}
#reach-us .info-card h3 {
  color: #f7f6f3;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
#reach-us .info-card p {
  margin-bottom: 14px;
  line-height: 1.5;
}
#reach-us .info-card a {
  color: #f7f6f3;
  text-decoration: underline;
}
#reach-us .info-card a:hover {
  color: hsl(36, 33%, 70%);
}
#reach-us .info-icon {
  display: inline-block;
  width: 20px;
  text-align: center;
  margin-right: 8px;
}
#reach-us .map-note {
  font-size: 0.92rem;
  border-top: 1px solid rgba(247,246,243,0.25);
  padding-top: 16px;
  margin-top: 20px;
}
#reach-us .map-note a {
  color: hsl(36, 33%, 75%);
  font-weight: 600;
}
#reach-us .form-label {
  font-weight: 600;
  color: #2a2a2a;
}
#reach-us .form-control {
  border-radius: 12px;
  border: 1px solid #ccc8c0;
  padding: 10px 14px;
}
#reach-us .form-control:focus {
  border-color: hsl(246, 43%, 53%);
  box-shadow: 0 0 0 0.2rem rgba(246, 43%, 53%, 0.15);
}
#reach-us .btn-submit {
  background-color: hsl(246, 43%, 53%);
  border: none;
  color: #fff;
  border-radius: 12px;
  padding: 12px 32px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: background-color 0.2s ease;
}
#reach-us .btn-submit:hover {
  background-color: hsl(246, 43%, 43%);
  color: #fff;
}
#reach-us .response-note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 14px;
}

.disclaimer-section {
  background-color: #f4f4f1;
  padding: 52px 0;
}
.disclaimer-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e3e0da;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.disclaimer-icon {
  color: hsl(246, 43%, 53%);
  font-size: 2rem;
  margin-right: 14px;
  flex-shrink: 0;
}
.disclaimer-heading {
  font-family: 'Montserrat', sans-serif;
  color: hsl(186, 31%, 21%);
  font-weight: 700;
  margin-bottom: 0;
}
.disclaimer-text {
  font-family: 'Source Sans Pro', sans-serif;
  color: #333333;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-top: 18px;
  margin-bottom: 0;
}

#contact-section {
  background: #f4f4f1;
  padding: 52px 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #2b2b2b;
}
#contact-section .contact-heading {
  font-family: 'Montserrat', sans-serif;
  color: hsl(186, 31%, 21%);
  font-weight: 700;
}
#contact-section .contact-intro {
  color: #444;
  max-width: 700px;
}
#contact-section .contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  height: 100%;
}
#contact-section .info-card {
  background: hsl(186, 31%, 21%);
  color: #f5f5f3;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
}
#contact-section .info-card h3 {
  font-family: 'Montserrat', sans-serif;
  color: #f5f5f3;
  font-weight: 700;
  margin-bottom: 20px;
}
#contact-section .info-card a {
  color: #f0e6d8;
  text-decoration: none;
}
#contact-section .info-card a:hover {
  text-decoration: underline;
}
#contact-section .info-line {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}
#contact-section .info-line i {
  min-width: 22px;
  margin-top: 3px;
}
#contact-section .hours-table {
  width: 100%;
  color: #f5f5f3;
  font-size: 0.95rem;
}
#contact-section .hours-table td {
  padding: 2px 0;
}
#contact-section .form-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsl(186, 31%, 21%);
}
#contact-section .form-control {
  border-radius: 12px;
  border: 1px solid #d8d5cd;
  padding: 10px 14px;
}
#contact-section .form-control:focus {
  border-color: hsl(246, 43%, 53%);
  box-shadow: 0 0 0 0.2rem rgba(78, 67, 173, 0.15);
}
#contact-section .btn-submit {
  background: hsl(246, 43%, 53%);
  border: none;
  color: #fff;
  border-radius: 14px;
  padding: 12px 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: background 0.2s ease;
}
#contact-section .btn-submit:hover {
  background: hsl(246, 43%, 43%);
  color: #fff;
}
#contact-section .directions-note {
  background: #efece4;
  border-radius: 16px;
  padding: 18px 22px;
  margin-top: 24px;
  font-size: 0.95rem;
  color: #333;
}
#contact-section .directions-note a {
  color: hsl(246, 43%, 53%);
  font-weight: 600;
  text-decoration: none;
}
#contact-section .directions-note a:hover {
  text-decoration: underline;
}
#contact-section .cta-block {
  text-align: center;
  margin-top: 48px;
}
#contact-section .cta-btn {
  display: inline-block;
  background: hsl(36, 33%, 35%);
  color: #fff;
  border-radius: 16px;
  padding: 14px 34px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}
#contact-section .cta-btn:hover {
  background: hsl(36, 33%, 28%);
  color: #fff;
}
@media (max-width: 767px) {
  #contact-section .contact-card,
  #contact-section .info-card {
    padding: 24px;
  }
}



  .thankyou-section {
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(135deg, hsl(36, 33%, 97%) 0%, hsl(186, 31%, 96%) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 3rem 1rem;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
  }

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

  .success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: hsl(186, 31%, 21%, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn 0.5s ease-out 0.2s both;
  }

  @keyframes popIn {
    from {
      opacity: 0;
      transform: scale(0.5);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .success-icon-wrapper svg {
    width: 56px;
    height: 56px;
    stroke: var(--color-secondary);
  }

  .thankyou-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.85rem;
    margin-bottom: 1rem;
  }

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

  .thankyou-note {
    background: hsl(36, 33%, 35%, 0.08);
    border-left: 4px solid var(--color-primary);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    text-align: left;
    font-size: 0.98rem;
    color: var(--color-secondary);
  }

  .thankyou-note strong {
    color: var(--color-primary);
  }

  .btn-home {
    background-color: var(--color-primary);
    border: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2.25rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
  }

  .btn-home:hover,
  .btn-home:focus {
    background-color: var(--color-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.25rem hsl(246, 43%, 53%, 0.35);
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2rem 1.25rem;
    }

    .thankyou-heading {
      font-size: 1.5rem;
    }

    .success-icon-wrapper {
      width: 80px;
      height: 80px;
    }

    .success-icon-wrapper svg {
      width: 44px;
      height: 44px;
    }
  }

#about-content {
  background: #f5f4f0;
  padding: 52px 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #2b2b2b;
}
#about-content h1, #about-content h2, #about-content h3 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(186, 31%, 21%);
}
#about-content .about-hero {
  margin-bottom: 48px;
}
#about-content .about-hero p.lead {
  color: #3a3a3a;
  max-width: 800px;
}
#about-content img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
#about-content .section-block {
  margin-bottom: 48px;
}
#about-content .card-stat {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  height: 100%;
  border: 1px solid #e5e2da;
}
#about-content .card-stat .stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(246, 43%, 53%);
}
#about-content .value-card {
  background: hsl(36, 33%, 35%);
  color: #f7f6f3;
  border-radius: 20px;
  padding: 24px;
  height: 100%;
}
#about-content .value-card h3 {
  color: #f7f6f3;
  font-size: 1.15rem;
}
#about-content .value-card p {
  color: #f0ece3;
  margin-bottom: 0;
}
#about-content .steps-list {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
}
#about-content .steps-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 56px;
  margin-bottom: 22px;
}
#about-content .steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: hsl(246, 43%, 53%);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
#about-content .steps-list h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: hsl(186, 31%, 21%);
}
#about-content .cta-box {
  background: hsl(186, 31%, 21%);
  color: #f7f6f3;
  border-radius: 22px;
  padding: 40px;
  text-align: center;
}
#about-content .cta-box h2 {
  color: #f7f6f3;
}
#about-content .cta-box p {
  color: #dce6e7;
}
#about-content .cta-box .btn-cta {
  background: hsl(246, 43%, 53%);
  color: #fff;
  border-radius: 12px;
  padding: 12px 32px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}
#about-content .btn-cta:hover {
  background: hsl(246, 43%, 43%);
  color: #fff;
}
#about-content figure {
  margin: 0;
}
#about-content figcaption {
  font-size: 0.9rem;
  color: #6a6a6a;
  margin-top: 8px;
}
@media (max-width: 767px) {
  #about-content .cta-box {
    padding: 28px 20px;
  }
}

#services-body {
  background: #f7f6f3;
  font-family: 'Source Sans Pro', sans-serif;
  color: #2a2a2a;
  padding: 52px 0;
}
#services-body h1, #services-body h2, #services-body h3 {
  font-family: 'Montserrat', sans-serif;
}
#services-body .page-header {
  margin-bottom: 48px;
}
#services-body .page-header h1 {
  color: hsl(186, 31%, 21%);
  font-weight: 700;
}
#services-body .page-header p {
  max-width: 760px;
  color: #444;
  font-size: 1.05rem;
}
#services-body .stats-strip {
  background: hsl(36, 33%, 35%);
  border-radius: 20px;
  padding: 22px 28px;
  color: #fdfaf6;
  margin-bottom: 48px;
}
#services-body .stats-strip .stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  display: block;
  color: #fdfaf6;
}
#services-body .stats-strip .stat-label {
  font-size: 0.85rem;
  color: #f0e6d8;
}
#services-body .service-card {
  background: #ffffff;
  border: 1px solid #e7e3db;
  border-radius: 20px;
  padding: 26px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  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 14px 30px rgba(45, 40, 30, 0.14);
  border-color: hsl(246, 43%, 53%);
}
#services-body .service-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: hsl(186, 31%, 21%);
  color: #f7f6f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: background 0.25s ease;
}
#services-body .service-card:hover .service-icon {
  background: hsl(246, 43%, 53%);
}
#services-body .service-body h3 {
  color: hsl(186, 31%, 21%);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
#services-body .service-body p {
  font-size: 0.95rem;
  color: #4a4a4a;
  margin-bottom: 10px;
}
#services-body .service-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 10px;
}
#services-body .service-terms span i {
  color: hsl(36, 33%, 35%);
  margin-right: 5px;
}
#services-body .service-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(246, 43%, 53%);
  font-size: 1.1rem;
}
#services-body .qa-section {
  margin-top: 52px;
}
#services-body .qa-section h2 {
  color: hsl(186, 31%, 21%);
  font-weight: 700;
  margin-bottom: 24px;
}
#services-body .accordion-item {
  border: 1px solid #e7e3db;
  border-radius: 14px !important;
  margin-bottom: 14px;
  overflow: hidden;
}
#services-body .accordion-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsl(186, 31%, 21%);
  background: #ffffff;
}
#services-body .accordion-button:not(.collapsed) {
  background: hsl(36, 33%, 35%);
  color: #fdfaf6;
}
#services-body .accordion-button:focus {
  box-shadow: none;
}
#services-body .accordion-body {
  color: #444;
  font-size: 0.95rem;
}
#services-body .cta-box {
  margin-top: 52px;
  background: hsl(246, 43%, 53%);
  border-radius: 22px;
  padding: 40px;
  text-align: center;
  color: #fdfaf6;
}
#services-body .cta-box h2 {
  color: #fdfaf6;
  font-weight: 700;
}
#services-body .cta-box p {
  color: #ece9f9;
  max-width: 620px;
  margin: 0 auto 20px;
}
#services-body .cta-box .btn-cta {
  background: #fdfaf6;
  color: hsl(246, 43%, 53%);
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 30px;
  border: none;
  transition: background 0.2s ease, color 0.2s ease;
}
#services-body .cta-box .btn-cta:hover {
  background: hsl(36, 33%, 35%);
  color: #fdfaf6;
}
@media (max-width: 576px) {
  #services-body .service-card {
    flex-direction: column;
    text-align: left;
  }
}
