@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500;700;900&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary: hsl(87, 20%, 38%);
  --secondary: hsl(237, 11%, 24%);
  --accent: hsl(297, 43%, 57%);
  --surface: #f4f4f1;
}

body{
  font-family: 'Open Sans', sans-serif;
  background-color: var(--surface);
  color: #222;
}
h1, h2, h3, h4, h5, h6{
  font-family: 'Roboto', sans-serif;
}
.navbar{
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e0;
  padding-top: 14px;
  padding-bottom: 14px;
}
.navbar-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.3rem;
}
.navbar-brand img{
  border-radius: 8px;
}
.navbar-nav .nav-link{
  color: var(--secondary);
  font-weight: 600;
  padding: 8px 14px !important;
}
.navbar-nav .nav-link:hover{
  color: var(--accent);
}
.navbar-toggler{
  border-color: var(--primary);
}

footer.site-footer {
  background: hsl(237, 11%, 24%);
  color: #f4f4f1;
  padding: 48px 0 24px;
  font-family: 'Open Sans', sans-serif;
}
footer.site-footer h5 {
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  margin-bottom: 16px;
}
footer.site-footer p {
  color: #d7d7d3;
}
footer.site-footer a {
  color: #d7d7d3;
  text-decoration: none;
}
footer.site-footer a:hover {
  color: hsl(297, 43%, 57%);
}
footer.site-footer ul {
  list-style: none;
  padding-left: 0;
}
footer.site-footer ul li {
  margin-bottom: 8px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsl(87, 20%, 38%);
  color: #ffffff;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}
.footer-social a:hover {
  background: hsl(297, 43%, 57%);
  color: #ffffff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 32px;
  padding-top: 16px;
  color: #b8b8b4;
  font-size: 0.9rem;
}
#cookieBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #f4f4f1;
  border-top: 3px solid hsl(87, 20%, 38%);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  padding: 16px 0;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Open Sans', sans-serif;
}
#cookieBar h6 {
  font-family: 'Roboto', sans-serif;
  color: hsl(237, 11%, 24%);
  margin-bottom: 6px;
}
#cookieBar p, #cookieBar li {
  color: #333333;
  font-size: 0.9rem;
}
#cookieBar ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.cookie-btn {
  border-radius: 18px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  transition: all 0.3s ease;
  flex: 1;
}
.btn-accept-all {
  background: hsl(87, 20%, 38%);
  color: #ffffff;
}
.btn-accept-all:hover {
  background: hsl(87, 20%, 30%);
  color: #ffffff;
}
.btn-reject-optional {
  background: hsl(297, 43%, 57%);
  color: #ffffff;
}
.btn-reject-optional:hover {
  background: hsl(297, 43%, 47%);
  color: #ffffff;
}
.btn-manage {
  color: hsl(237, 11%, 24%);
  text-decoration: underline;
  font-size: 0.85rem;
}
.btn-manage:hover {
  color: hsl(297, 43%, 57%);
}

#portfolio-main {
  background-color: #f7f6f3;
  font-family: 'Open Sans', sans-serif;
  padding: 52px 0;
}
#portfolio-main h1, #portfolio-main h2, #portfolio-main h3, #portfolio-main h4 {
  font-family: 'Roboto', sans-serif;
  color: hsl(237, 11%, 24%);
}
#portfolio-main .page-header {
  margin-bottom: 40px;
}
#portfolio-main .page-header p {
  color: #444;
  max-width: 720px;
  margin: 0 auto;
}
#portfolio-main .card {
  border: 1px solid #e0ddd6;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  background-color: #fff;
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s ease;
}
#portfolio-main .card:hover {
  transform: translateY(-4px);
}
#portfolio-main .card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
#portfolio-main .card-body {
  padding: 22px;
}
#portfolio-main .badge-category {
  background-color: hsl(87, 20%, 38%);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 12px;
}
#portfolio-main .card-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
#portfolio-main .card-text {
  color: #444;
  font-size: 0.94rem;
}
#portfolio-main .btn-details {
  background-color: hsl(237, 11%, 24%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 8px 18px;
  font-size: 0.9rem;
  margin-top: 14px;
}
#portfolio-main .btn-details:hover {
  background-color: hsl(297, 43%, 57%);
  color: #fff;
}
#portfolio-main .modal-content {
  border-radius: 20px;
  border: none;
}
#portfolio-main .modal-header {
  background-color: hsl(237, 11%, 24%);
  color: #fff;
  border-radius: 20px 20px 0 0;
}
#portfolio-main .modal-header .btn-close {
  filter: invert(1);
}
#portfolio-main .modal-body img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}
#portfolio-main .modal-body dl {
  margin-bottom: 0;
}
#portfolio-main .modal-body dt {
  color: hsl(87, 20%, 38%);
  font-weight: 700;
}
#portfolio-main .modal-body dd {
  margin-bottom: 10px;
  color: #444;
}
#portfolio-main .stats-section {
  background-color: #fff;
  border: 1px solid #e0ddd6;
  border-radius: 20px;
  padding: 32px;
  margin-top: 50px;
  margin-bottom: 50px;
}
#portfolio-main .stats-section table {
  margin-bottom: 0;
}
#portfolio-main .stats-section th {
  color: hsl(237, 11%, 24%);
  font-family: 'Roboto', sans-serif;
}
#portfolio-main .stats-section td {
  color: #444;
}
#portfolio-main .cta-box {
  background-color: hsl(87, 20%, 38%);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}
#portfolio-main .cta-box h2 {
  color: #fff;
}
#portfolio-main .cta-box p {
  color: #f0f0e8;
}
#portfolio-main .cta-box .btn-cta {
  background-color: hsl(297, 43%, 57%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 30px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
}
#portfolio-main .cta-box .btn-cta:hover {
  background-color: #fff;
  color: hsl(237, 11%, 24%);
}
@media (max-width: 767px) {
  #portfolio-main .stats-section {
    padding: 20px;
  }
  #portfolio-main .cta-box {
    padding: 28px;
  }
}

.hero-section {
    background-color: #f7f6f3;
    padding: 56px 0;
    font-family: 'Open Sans', sans-serif;
  }
  .hero-section h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: hsl(237, 11%, 24%);
  }
  .hero-section h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: hsl(87, 20%, 38%);
    font-size: 1.3rem;
  }
  .hero-section p.lead-text {
    color: #333;
    font-size: 1.05rem;
  }
  .hero-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
  }
  .hero-list li {
    margin-bottom: 12px;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .hero-list li i {
    color: hsl(297, 43%, 57%);
    font-size: 1.2rem;
    margin-top: 2px;
  }
  .hero-img-wrap img {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 1px solid #e0ded8;
  }
  .btn-primary-custom {
    background-color: hsl(87, 20%, 38%);
    border: 2px solid hsl(87, 20%, 38%);
    color: #fff;
    border-radius: 18px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .btn-primary-custom:hover {
    background-color: hsl(87, 20%, 30%);
    border-color: hsl(87, 20%, 30%);
    color: #fff;
  }
  .btn-outline-custom {
    background-color: transparent;
    border: 2px solid hsl(237, 11%, 24%);
    color: hsl(237, 11%, 24%);
    border-radius: 18px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .btn-outline-custom:hover {
    background-color: hsl(237, 11%, 24%);
    color: #fff;
  }
  @media (max-width: 767px) {
    .hero-section h1 {
      font-size: 1.9rem;
    }
    .hero-img-wrap {
      margin-top: 32px;
    }
  }

.services-section {
  background-color: #f7f6f3;
  padding: 52px 0;
  font-family: 'Open Sans', sans-serif;
}
.services-section h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(237, 11%, 24%);
  font-weight: 700;
}
.services-section .lead-text {
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}
.service-card {
  background-color: #ffffff;
  border: 1px solid #e2e2de;
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  border-color: hsl(87, 20%, 38%);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: hsl(87, 20%, 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background-color 0.25s ease;
}
.service-card:hover .service-icon {
  background-color: hsl(87, 20%, 38%);
}
.service-icon i {
  font-size: 28px;
  color: hsl(87, 20%, 38%);
  transition: color 0.25s ease;
}
.service-card:hover .service-icon i {
  color: #ffffff;
}
.service-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: hsl(237, 11%, 24%);
  margin-bottom: 10px;
}
.service-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 16px;
}
.service-price {
  display: inline-block;
  background-color: hsl(297, 43%, 57%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 16px;
  border-radius: 12px;
}
.service-terms {
  font-size: 0.8rem;
  color: #777;
  margin-top: 10px;
}

#voices {
  font-family: 'Open Sans', sans-serif;
  background: #f7f6f3;
  padding: 52px 0;
}
#voices h2, #voices h3 {
  font-family: 'Roboto', sans-serif;
}
#voices .section-title {
  color: hsl(237, 11%, 24%);
  font-weight: 700;
}
#voices .section-sub {
  color: #555;
  max-width: 680px;
}
#voices .review-card {
  background: #fff;
  border: 1px solid #e3e1db;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#voices .review-card.accent-card {
  background: hsl(87, 20%, 38%);
  border: 1px solid hsl(87, 20%, 30%);
  color: #fff;
}
#voices .review-card.accent-card .review-name, #voices .review-card.accent-card .review-text, #voices .review-card.accent-card .review-loc {
  color: #fff;
}
#voices .review-card.dark-card {
  background: hsl(237, 11%, 24%);
  border: 1px solid hsl(237, 11%, 18%);
  color: #f4f4f1;
}
#voices .review-card.dark-card .review-name, #voices .review-card.dark-card .review-text, #voices .review-card.dark-card .review-loc {
  color: #f4f4f1;
}
#voices .review-stars {
  color: hsl(297, 43%, 57%);
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
#voices .review-card.accent-card .review-stars, #voices .review-card.dark-card .review-stars {
  color: #f0c419;
}
#voices .review-name {
  font-weight: 700;
  color: hsl(237, 11%, 24%);
  margin-bottom: 2px;
}
#voices .review-loc {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 12px;
}
#voices .review-text {
  color: #333;
  font-size: 0.96rem;
  line-height: 1.55;
  flex-grow: 1;
}
#voices .review-card.short-card {
  justify-content: center;
}
#voices .review-card.short-card .review-text {
  font-size: 1.05rem;
  font-style: italic;
}
#voices .quote-mark {
  font-size: 2.2rem;
  color: hsl(297, 43%, 57%);
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 4px;
  display: block;
}
#voices .stats-strip {
  background: #fff;
  border: 1px solid #e3e1db;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}
#voices .stats-strip .num {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: hsl(87, 20%, 38%);
}
#voices .stats-strip .lbl {
  font-size: 0.85rem;
  color: #555;
}
@media (max-width: 767px) {
  #voices { padding: 40px 0; }
}

#questions {
  background-color: #f7f6f3;
  padding: 52px 0;
  font-family: 'Open Sans', sans-serif;
}
#questions h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(237, 11%, 24%);
  font-weight: 700;
}
#questions p.lead-text {
  color: #4a4a4a;
  max-width: 720px;
}
#questions .accordion-item {
  border: 1px solid #e0ded8;
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  background-color: #ffffff;
}
#questions .accordion-button {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: hsl(237, 11%, 24%);
  background-color: #ffffff;
  border-radius: 16px;
}
#questions .accordion-button:not(.collapsed) {
  background-color: hsl(87, 20%, 38%);
  color: #ffffff;
  box-shadow: none;
}
#questions .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(139, 156, 107, 0.3);
}
#questions .accordion-button::after {
  filter: none;
}
#questions .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
#questions .accordion-body {
  color: #3d3d3d;
  background-color: #fdfdfc;
  line-height: 1.6;
  font-size: 0.98rem;
}
#questions .accordion-body a {
  color: hsl(297, 43%, 57%);
  text-decoration: underline;
}
#questions .accordion-body a:hover {
  color: hsl(297, 43%, 45%);
}

#company {
  background: #f4f4f1;
  padding: 52px 0;
  font-family: 'Open Sans', sans-serif;
  color: #2b2b2b;
}
#company h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: hsl(237, 11%, 24%);
  margin-bottom: 18px;
}
#company h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: hsl(87, 20%, 38%);
  margin-top: 26px;
  margin-bottom: 12px;
}
#company p {
  line-height: 1.7;
  font-size: 1rem;
  color: #333;
}
#company .company-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #e0ddd5;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}
#company .value-card {
  background: #fff;
  border: 1px solid #e5e3da;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  height: 100%;
}
#company .value-card h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: hsl(297, 43%, 57%);
  margin-bottom: 8px;
}
#company .value-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0;
}
#company .stat-badge {
  display: inline-block;
  background: hsl(87, 20%, 38%);
  color: #fff;
  border-radius: 16px;
  padding: 10px 18px;
  font-size: 0.95rem;
  margin: 4px 6px 4px 0;
}

#benefits {
  background-color: #f7f6f3;
  padding: 52px 0;
  font-family: 'Open Sans', sans-serif;
}

#benefits h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(237, 11%, 24%);
  font-weight: 700;
}

#benefits .lead {
  color: #555;
}

#benefits .benefit-card {
  background-color: #ffffff;
  border: 1px solid #e2e2de;
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

#benefits .benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  border-color: hsl(87, 20%, 38%);
}

#benefits .icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: hsl(87, 20%, 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

#benefits .benefit-card:hover .icon-wrapper {
  background-color: hsl(87, 20%, 38%);
}

#benefits .icon-wrapper i {
  font-size: 28px;
  color: hsl(87, 20%, 38%);
  transition: color 0.3s ease;
}

#benefits .benefit-card:hover .icon-wrapper i {
  color: #ffffff;
}

#benefits .benefit-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  color: hsl(237, 11%, 24%);
  font-weight: 700;
  margin-bottom: 12px;
}

#benefits .benefit-card p {
  color: #444;
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 0;
}

#contact {
  background: #f4f4f1;
  padding: 56px 0;
  font-family: 'Open Sans', sans-serif;
  color: #222;
}
#contact h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(237, 11%, 24%);
  font-weight: 700;
}
#contact .lead-text {
  color: #444;
  max-width: 700px;
}
#contact .contact-card {
  background: #fff;
  border: 1px solid #e2e2de;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  padding: 32px;
  height: 100%;
}
#contact .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
#contact .info-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
#contact .info-list li .icon-box {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: hsl(87, 20%, 38%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
#contact .info-list li a {
  color: hsl(237, 11%, 24%);
  text-decoration: none;
  font-weight: 600;
}
#contact .info-list li a:hover {
  color: hsl(297, 43%, 57%);
}
#contact .info-list li span.label {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 2px;
}
#contact .map-link {
  color: hsl(297, 43%, 57%);
  font-weight: 600;
  text-decoration: none;
}
#contact .map-link:hover {
  text-decoration: underline;
}
#contact .find-us-note {
  font-size: 0.92rem;
  color: #555;
  margin-top: 6px;
}
#contact .hours-box {
  background: #f7f6f3;
  border-radius: 16px;
  padding: 16px 20px;
  margin-top: 10px;
  border: 1px solid #e6e6e2;
}
#contact .hours-box strong {
  color: hsl(237, 11%, 24%);
}
#contact form {
  background: #fff;
  border: 1px solid #e2e2de;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  padding: 32px;
  height: 100%;
}
#contact .form-label {
  font-weight: 600;
  color: hsl(237, 11%, 24%);
}
#contact .form-control {
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 10px 14px;
}
#contact .form-control:focus {
  border-color: hsl(87, 20%, 38%);
  box-shadow: 0 0 0 0.2rem hsla(87, 20%, 38%, 0.2);
}
#contact .btn-submit {
  background: hsl(87, 20%, 38%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  transition: background 0.2s ease;
}
#contact .btn-submit:hover {
  background: hsl(297, 43%, 57%);
  color: #fff;
}
#contact .reply-note {
  font-size: 0.88rem;
  color: #666;
  margin-top: 12px;
}

#disclaimer {
  background-color: #f7f6f3;
  padding: 52px 0;
  font-family: 'Open Sans', sans-serif;
}
#disclaimer .disclaimer-card {
  background-color: #ffffff;
  border: 1px solid #e0ddd7;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  padding: 40px;
}
#disclaimer .icon-wrap {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background-color: hsl(87, 20%, 38%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
}
#disclaimer .icon-wrap i {
  color: #ffffff;
  font-size: 1.6rem;
}
#disclaimer h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(237, 11%, 24%);
  font-weight: 700;
  margin-bottom: 0;
}
#disclaimer p {
  color: #333333;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  #disclaimer .disclaimer-card {
    padding: 24px;
  }
  #disclaimer .icon-wrap {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }
}

#contact-main {
  background: #f7f6f3;
  padding: 56px 0;
  font-family: 'Open Sans', sans-serif;
  color: #222;
}
#contact-main h1, #contact-main h2, #contact-main h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(237, 11%, 24%);
}
#contact-main .intro-text {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #333;
  font-size: 1.05rem;
}
#contact-main .card {
  border: 1px solid #e0e0dc;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  background: #fff;
  padding: 32px;
  height: 100%;
}
#contact-main .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contact-main .info-list li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
#contact-main .info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: hsl(87, 20%, 38%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
#contact-main .info-list a {
  color: hsl(237, 11%, 24%);
  text-decoration: none;
  font-weight: 600;
}
#contact-main .info-list a:hover {
  color: hsl(297, 43%, 57%);
  text-decoration: underline;
}
#contact-main .info-list span.label {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 2px;
}
#contact-main .find-us {
  background: #f4f4f1;
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 10px;
  font-size: 0.95rem;
  color: #333;
}
#contact-main .find-us a {
  color: hsl(297, 43%, 57%);
  font-weight: 600;
  text-decoration: none;
}
#contact-main .find-us a:hover {
  text-decoration: underline;
}
#contact-main .form-label {
  font-weight: 600;
  color: hsl(237, 11%, 24%);
}
#contact-main .form-control {
  border-radius: 12px;
  border: 1px solid #d5d5d0;
  padding: 10px 14px;
}
#contact-main .form-control:focus {
  border-color: hsl(87, 20%, 38%);
  box-shadow: 0 0 0 0.2rem rgba(107, 130, 84, 0.2);
}
#contact-main .btn-submit {
  background: hsl(87, 20%, 38%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 32px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  transition: background 0.2s ease;
}
#contact-main .btn-submit:hover {
  background: hsl(297, 43%, 57%);
  color: #fff;
}
#contact-main .hours-box {
  background: hsl(237, 11%, 24%);
  color: #f4f4f1;
  border-radius: 16px;
  padding: 20px;
  margin-top: 20px;
}
#contact-main .hours-box h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
#contact-main .hours-box p {
  margin-bottom: 4px;
  font-size: 0.95rem;
  color: #e8e8e6;
}
#contact-main .cta-bottom {
  text-align: center;
  margin-top: 48px;
}
#contact-main .cta-bottom a {
  display: inline-block;
  background: hsl(297, 43%, 57%);
  color: #fff;
  padding: 14px 36px;
  border-radius: 16px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  transition: background 0.2s ease;
}
#contact-main .cta-bottom a:hover {
  background: hsl(87, 20%, 38%);
  color: #fff;
}
@media (max-width: 767px) {
  #contact-main .card {
    padding: 22px;
  }
}



  

  .thankyou-section {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, hsl(87, 20%, 96%) 0%, #ffffff 60%);
    min-height: 100vh;
    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.08);
    padding: 3rem 2rem;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .thankyou-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: var(--accent);
    opacity: 0.08;
    border-radius: 50%;
  }

  .thankyou-card::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 180px;
    height: 180px;
    background: var(--primary);
    opacity: 0.08;
    border-radius: 50%;
  }

  .success-icon-wrapper {
    width: 96px;
    height: 96px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px hsla(87, 20%, 38%, 0.12);
    animation: popIn 0.5s ease-out;
  }

  .success-icon-wrapper svg {
    width: 48px;
    height: 48px;
    stroke: #ffffff;
  }

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

  .thankyou-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    color: var(--secondary);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .thankyou-heading span {
    color: var(--accent);
  }

  .thankyou-message {
    color: hsl(237, 11%, 40%);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
  }

  .info-box {
    background: hsl(87, 20%, 96%);
    border-left: 4px solid var(--primary);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    text-align: left;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .info-box svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    margin-top: 2px;
  }

  .info-box p {
    margin-bottom: 0;
    color: var(--secondary);
    font-size: 0.95rem;
  }

  .btn-thankyou {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    padding: 0.75rem 2.25rem;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px hsla(87, 20%, 38%, 0.35);
  }

  .btn-thankyou:hover {
    background-color: hsl(87, 20%, 30%);
    border-color: hsl(87, 20%, 30%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px hsla(87, 20%, 38%, 0.45);
  }

  .btn-thankyou:active {
    transform: translateY(0);
  }

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

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2rem 1.25rem;
    }
    .success-icon-wrapper {
      width: 80px;
      height: 80px;
    }
    .success-icon-wrapper svg {
      width: 40px;
      height: 40px;
    }
  }
