:root {
  --primary: hsl(307, 20%, 31%);
  --secondary: hsl(97, 10%, 13%);
  --accent: hsl(157, 28%, 47%);
  --surface: #f4f4f1;
}

body {
  font-family: 'Merriweather', serif;
  background-color: var(--surface);
  color: #2a2a2a;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
}
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e0dd;
  padding-top: 14px;
  padding-bottom: 14px;
}
.navbar-brand {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand:hover {
  color: var(--primary);
}
.navbar-nav .nav-link {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: var(--secondary);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.navbar-nav .nav-link:hover {
  color: #ffffff;
  background-color: var(--accent);
}
.navbar-toggler {
  border-color: var(--primary);
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem hsla(307, 20%, 31%, 0.25);
}

#faq-body {
  background-color: #f4f4f1;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
  color: #222;
}
#faq-body h1, #faq-body h2, #faq-body h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(97, 10%, 13%);
}
#faq-body .intro-wrap {
  max-width: 860px;
  margin: 0 auto 56px auto;
}
#faq-body .intro-wrap p {
  font-size: 1.05rem;
  line-height: 1.75;
}
#faq-body .subsection {
  margin-bottom: 48px;
}
#faq-body .subsection h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  border-left: 4px solid hsl(157, 28%, 47%);
  padding-left: 12px;
}
#faq-body .accordion-item {
  background-color: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 8px;
  margin-bottom: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  overflow: hidden;
}
#faq-body .accordion-button {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(97, 10%, 13%);
  background-color: #ffffff;
  font-size: 1.02rem;
}
#faq-body .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: hsl(307, 20%, 31%);
  box-shadow: none;
}
#faq-body .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(157, 28%, 47%);
}
#faq-body .accordion-button::after {
  filter: none;
}
#faq-body .accordion-body {
  background-color: #fdfdfc;
  color: #333;
  line-height: 1.75;
  font-size: 0.98rem;
}
#faq-body .cta-box {
  margin-top: 80px;
  background-color: hsl(307, 20%, 31%);
  border-radius: 10px;
  padding: 48px 32px;
  text-align: center;
}
#faq-body .cta-box h2 {
  color: #ffffff;
  margin-bottom: 12px;
}
#faq-body .cta-box p {
  color: #f4f4f1;
  max-width: 640px;
  margin: 0 auto 24px auto;
}
#faq-body .cta-box a.btn {
  background-color: hsl(157, 28%, 47%);
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
#faq-body .cta-box a.btn:hover {
  background-color: hsl(157, 28%, 40%);
  color: #ffffff;
}
#faq-body .section-divider {
  height: 1px;
  background-color: #e2e0dc;
  margin: 56px 0;
}
@media (max-width: 576px) {
  #faq-body { padding: 64px 0; }
  #faq-body .cta-box { padding: 36px 20px; }
}

footer {
  background: hsl(97, 10%, 13%);
  color: #f4f4f1;
  font-family: 'Merriweather', serif;
  padding: 80px 0 24px;
}
footer h5, footer h6 {
  font-family: 'Lato', sans-serif;
  color: #fff;
  margin-bottom: 18px;
}
footer p, footer a, footer li {
  color: #d8d5d3;
  font-size: 0.95rem;
}
footer a {
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a:hover {
  color: hsl(157, 28%, 47%);
}
footer .footer-links li {
  list-style: none;
  margin-bottom: 10px;
}
footer .footer-contact li {
  list-style: none;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
footer .footer-contact i {
  color: hsl(157, 28%, 47%);
  margin-top: 3px;
}
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: hsl(307, 20%, 31%);
  color: #fff;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-row a:hover {
  background: hsl(157, 28%, 47%);
  color: #fff;
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #b6b3b1;
}
.footer-bottom a {
  color: #b6b3b1;
}
.footer-bottom a:hover {
  color: hsl(157, 28%, 47%);
}

#cookieStrip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: hsl(97, 10%, 13%);
  color: #f4f4f1;
  border-top: 3px solid hsl(157, 28%, 47%);
  font-family: 'Merriweather', serif;
  padding: 18px 0;
  max-height: 60vh;
  overflow-y: auto;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.25);
}
#cookieStrip h6 {
  font-family: 'Lato', sans-serif;
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.05rem;
}
#cookieStrip p, #cookieStrip li {
  font-size: 0.85rem;
  color: #d8d5d3;
  margin-bottom: 6px;
}
#cookieStrip ul {
  padding-left: 0;
  list-style: none;
}
#cookieStrip ul li strong {
  color: #fff;
}
.cookie-btn {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  width: 100%;
}
.btn-accept-all {
  background: hsl(157, 28%, 47%);
  color: #fff;
}
.btn-accept-all:hover {
  background: hsl(157, 28%, 37%);
  color: #fff;
}
.btn-reject-optional {
  background: transparent;
  color: #f4f4f1;
  border-color: #f4f4f1;
}
.btn-reject-optional:hover {
  background: #f4f4f1;
  color: hsl(97, 10%, 13%);
}
.btn-manage-settings {
  color: hsl(157, 28%, 47%);
  font-size: 0.85rem;
  text-decoration: underline;
}
.btn-manage-settings:hover {
  color: #fff;
}

#services-content {
  background-color: #f7f6f3;
  font-family: 'Merriweather', serif;
  color: #222;
  padding: 96px 0;
}
#services-content h1, #services-content h2, #services-content h3 {
  font-family: 'Lato', sans-serif;
}
#services-content .page-intro {
  max-width: 780px;
  margin: 0 auto 56px auto;
  text-align: center;
}
#services-content .page-intro h1 {
  color: hsl(307, 20%, 31%);
  font-weight: 700;
  margin-bottom: 16px;
}
#services-content .page-intro p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
}
#services-content .service-list {
  border-top: 1px solid #ddd;
}
#services-content .service-item {
  border-bottom: 1px solid #ddd;
  padding: 28px 20px;
  transition: background-color 0.25s ease, transform 0.25s ease;
  border-radius: 8px;
}
#services-content .service-item:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
#services-content .service-item .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background-color: hsl(157, 28%, 47%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
#services-content .service-item h3 {
  color: hsl(97, 10%, 13%);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}
#services-content .service-item p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
#services-content .price-tag {
  display: inline-block;
  background-color: hsl(307, 20%, 31%);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 4px 14px;
  border-radius: 6px;
}
#services-content .details-table {
  margin-top: 64px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
#services-content .details-table h2 {
  color: hsl(307, 20%, 31%);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
#services-content table {
  font-family: 'Merriweather', serif;
  font-size: 0.92rem;
}
#services-content table th {
  font-family: 'Lato', sans-serif;
  background-color: hsl(97, 10%, 13%);
  color: #fff;
  font-weight: 700;
}
#services-content table td, #services-content table th {
  vertical-align: middle;
  padding: 12px 10px;
}
#services-content .cta-box {
  margin-top: 88px;
  background-color: hsl(307, 20%, 31%);
  border-radius: 8px;
  padding: 48px 32px;
  text-align: center;
}
#services-content .cta-box h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
#services-content .cta-box p {
  color: #f0e8ec;
  max-width: 620px;
  margin: 0 auto 24px auto;
}
#services-content .cta-box .btn-cta {
  background-color: hsl(157, 28%, 47%);
  color: #fff;
  border: none;
  padding: 12px 34px;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease;
}
#services-content .cta-box .btn-cta:hover {
  background-color: #3f8064;
  color: #fff;
}
@media (max-width: 767px) {
  #services-content { padding: 64px 0; }
  #services-content .details-table { padding: 20px; }
}



.thank-you-section {
  font-family: 'Merriweather', serif;
  background: linear-gradient(135deg, hsl(307, 20%, 97%) 0%, hsl(157, 28%, 96%) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 3rem 1rem;
}

.thank-you-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;
}

.success-icon-wrapper {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  background: hsl(157, 28%, 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.6s ease-out;
}

.success-icon-wrapper svg {
  width: 58px;
  height: 58px;
  stroke: var(--accent);
}

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

.thank-you-heading {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.thank-you-text {
  color: var(--secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.thank-you-note {
  background: hsl(307, 20%, 97%);
  border-left: 4px solid var(--accent);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: var(--secondary);
  margin: 1.75rem 0;
  text-align: left;
}

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

.btn-back-home {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  background-color: var(--primary);
  border: none;
  color: #fff;
  padding: 0.75rem 2.25rem;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0.35rem 1rem hsla(307, 20%, 31%, 0.35);
}

.btn-back-home:hover,
.btn-back-home:focus {
  background-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.25rem hsla(157, 28%, 47%, 0.4);
}

@media (max-width: 576px) {
  .thank-you-card {
    padding: 2rem 1.25rem;
  }
  .thank-you-heading {
    font-size: 1.5rem;
  }
  .success-icon-wrapper {
    width: 90px;
    height: 90px;
  }
  .success-icon-wrapper svg {
    width: 46px;
    height: 46px;
  }
}

#portfolio-body {
  background: #f7f6f3;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
  color: #2b2b2b;
}
#portfolio-body h1, #portfolio-body h2, #portfolio-body h3, #portfolio-body h5 {
  font-family: 'Lato', sans-serif;
}
#portfolio-body .intro-block {
  max-width: 780px;
  margin: 0 auto 64px auto;
  text-align: center;
}
#portfolio-body .intro-block h1 {
  color: hsl(307, 20%, 31%);
  font-weight: 700;
  margin-bottom: 16px;
}
#portfolio-body .intro-block p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
}
#portfolio-body .stats-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 72px;
}
#portfolio-body .stats-strip .stat-item {
  background: #fff;
  border: 1px solid #e4e0e2;
  border-radius: 8px;
  padding: 16px 22px;
  min-width: 150px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
#portfolio-body .stats-strip .stat-item .num {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(157, 28%, 47%);
  font-size: 1.6rem;
  display: block;
}
#portfolio-body .stats-strip .stat-item .lbl {
  font-size: 0.85rem;
  color: #555;
}
#portfolio-body .case-card {
  background: #fff;
  border: 1px solid #e4e0e2;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#portfolio-body .case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.09);
}
#portfolio-body .case-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}
#portfolio-body .case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio-body .case-card .card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#portfolio-body .badge-category {
  background: hsl(157, 28%, 47%);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
  width: fit-content;
}
#portfolio-body .case-card h3 {
  font-size: 1.15rem;
  color: hsl(307, 20%, 31%);
  margin-bottom: 10px;
  font-weight: 700;
}
#portfolio-body .case-card p {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.6;
  flex-grow: 1;
}
#portfolio-body .btn-details {
  background: hsl(307, 20%, 31%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 9px 18px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 14px;
  align-self: flex-start;
  text-decoration: none;
  transition: background 0.2s ease;
}
#portfolio-body .btn-details:hover {
  background: hsl(157, 28%, 47%);
  color: #fff;
}
#portfolio-body .modal-content {
  border-radius: 8px;
  border: none;
}
#portfolio-body .modal-header {
  background: hsl(307, 20%, 31%);
  color: #fff;
  border-radius: 8px 8px 0 0;
}
#portfolio-body .modal-header .btn-close {
  filter: invert(1);
}
#portfolio-body .modal-body img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}
#portfolio-body .modal-body p {
  color: #444;
  line-height: 1.7;
}
#portfolio-body .qa-block {
  margin-top: 96px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
#portfolio-body .qa-block h2 {
  color: hsl(307, 20%, 31%);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
#portfolio-body .qa-item {
  background: #fff;
  border: 1px solid #e4e0e2;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
#portfolio-body .qa-item h5 {
  color: hsl(157, 28%, 47%);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 8px;
}
#portfolio-body .qa-item p {
  color: #444;
  font-size: 0.93rem;
  margin: 0;
  line-height: 1.65;
}
#portfolio-body .cta-final {
  margin-top: 88px;
  background: hsl(97, 10%, 13%);
  color: #f7f6f3;
  border-radius: 8px;
  padding: 48px 32px;
  text-align: center;
}
#portfolio-body .cta-final h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
#portfolio-body .cta-final p {
  color: #d8d6d4;
  max-width: 620px;
  margin: 0 auto 24px auto;
}
#portfolio-body .cta-final .btn-cta {
  background: hsl(157, 28%, 47%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
#portfolio-body .cta-final .btn-cta:hover {
  background: hsl(157, 28%, 40%);
  color: #fff;
}

.hero-section {
  background: #f4f4f1;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
}
.hero-section h1 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(97, 10%, 13%);
  font-size: 2.6rem;
  margin-bottom: 16px;
}
.hero-section h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: hsl(307, 20%, 31%);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.hero-section p.desc {
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.hero-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}
.hero-list li {
  color: #222;
  margin-bottom: 12px;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hero-list i {
  color: hsl(157, 28%, 47%);
  font-size: 1.2rem;
  margin-top: 2px;
}
.btn-hero-primary {
  background-color: hsl(157, 28%, 47%);
  border: 2px solid hsl(157, 28%, 47%);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn-hero-primary:hover {
  background-color: #fff;
  color: hsl(157, 28%, 47%);
  border-color: hsl(157, 28%, 47%);
}
.btn-hero-secondary {
  background-color: transparent;
  border: 2px solid hsl(307, 20%, 31%);
  color: hsl(307, 20%, 31%);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn-hero-secondary:hover {
  background-color: hsl(307, 20%, 31%);
  color: #fff;
}
.hero-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
@media (max-width: 767px) {
  .hero-section {
    padding: 64px 0;
    text-align: center;
  }
  .hero-list li {
    text-align: left;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}

.services-section {
  background-color: #f7f6f3;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
}
.services-section h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(97, 10%, 13%);
  font-weight: 700;
}
.services-section .lead-sub {
  color: hsl(97, 10%, 13%);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}
.service-list {
  border-top: 1px solid #ddd8d5;
}
.service-item {
  padding: 28px 20px;
  border-bottom: 1px solid #ddd8d5;
  transition: background-color 0.25s ease, transform 0.25s ease;
  border-radius: 8px;
}
.service-item:hover {
  background-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.service-item .icon-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 8px;
  background-color: hsl(157, 28%, 47%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}
.service-item h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: hsl(97, 10%, 13%);
  margin-bottom: 6px;
}
.service-item p {
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.service-price {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(307, 20%, 31%);
  background-color: #f0eaee;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.95rem;
}
@media (min-width: 992px) {
  .service-col-divider {
    border-left: 1px solid #ddd8d5;
  }
}

#feedback {
  background-color: #f7f6f3;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
}
#feedback h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(97, 10%, 13%);
  font-weight: 700;
}
#feedback .lead-sub {
  color: #4a4a4a;
  max-width: 640px;
  margin: 0 auto;
}
#feedback .review-card {
  background: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#feedback .review-card .stars {
  color: hsl(157, 28%, 47%);
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
#feedback .review-card .stars .empty {
  color: #d8d6d2;
}
#feedback .review-card p.review-text {
  color: #2e2e2e;
  font-size: 0.97rem;
  line-height: 1.6;
  flex-grow: 1;
}
#feedback .review-card .reviewer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #ece9e4;
}
#feedback .review-card .reviewer-name {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(307, 20%, 31%);
  font-size: 0.95rem;
}
#feedback .review-card .reviewer-loc {
  color: #6b6b6b;
  font-size: 0.83rem;
}
#feedback .review-card.accent-card {
  background: hsl(307, 20%, 31%);
  border: 1px solid hsl(307, 20%, 31%);
}
#feedback .review-card.accent-card .review-text, #feedback .review-card.accent-card .reviewer-name {
  color: #f7f6f3;
}
#feedback .review-card.accent-card .reviewer-loc {
  color: #d9cdd6;
}
#feedback .review-card.accent-card .reviewer {
  border-top: 1px solid rgba(255,255,255,0.2);
}
#feedback .review-card.accent-card .stars {
  color: hsl(157, 28%, 60%);
}
#feedback .review-card.tall {
  background: #fbfaf8;
}
#feedback .stat-strip {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid #e2e0dc;
}
#feedback .stat-strip .stat-num {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: hsl(307, 20%, 31%);
}
#feedback .stat-strip .stat-label {
  color: #555;
  font-size: 0.88rem;
}
@media (max-width: 767px) {
  #feedback { padding: 64px 0; }
}

#advantages {
  background-color: #f7f6f3;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
}
#advantages h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(97, 10%, 13%);
  font-weight: 700;
}
#advantages .lead-sub {
  color: #4a4a4a;
  max-width: 700px;
}
#advantages .adv-card {
  background: #fff;
  border: 1px solid #e2e0dc;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 32px 24px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#advantages .adv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
  border-color: hsl(157, 28%, 47%);
}
#advantages .adv-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(307, 20%, 31%);
  color: #f7f6f3;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
#advantages .adv-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: hsl(97, 10%, 13%);
  margin-bottom: 12px;
}
#advantages .adv-card p {
  color: #454545;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}
#advantages .accent-line {
  width: 60px;
  height: 4px;
  background: hsl(157, 28%, 47%);
  border-radius: 2px;
  margin-bottom: 20px;
}

#working-with-us {
  background-color: #f4f4f1;
  padding: 88px 0;
  font-family: 'Merriweather', serif;
}
#working-with-us h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(97, 10%, 13%);
}
#working-with-us .subtitle {
  color: hsl(97, 10%, 13%);
  font-size: 1.05rem;
  max-width: 640px;
}
#working-with-us .work-card {
  background-color: #ffffff;
  border: 1px solid #e0ded9;
  border-radius: 8px;
  padding: 28px 22px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
#working-with-us .work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
#working-with-us .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: hsl(157, 28%, 47%, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
#working-with-us .icon-wrap i {
  font-size: 1.4rem;
  color: hsl(157, 28%, 47%);
}
#working-with-us .work-card p {
  color: hsl(97, 10%, 13%);
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}

#about-us {
  background-color: #f7f6f3;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
  color: #2a2a2a;
}

#about-us h2, #about-us h3 {
  font-family: 'Lato', sans-serif;
}

#about-us .section-label {
  color: hsl(157, 28%, 47%);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}

#about-us h2 {
  color: hsl(97, 10%, 13%);
  font-weight: 700;
  margin-bottom: 24px;
}

#about-us p {
  line-height: 1.8;
  color: #3a3a3a;
}

#about-us .about-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e0ddd9;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

#about-us .img-stack {
  position: relative;
}

#about-us .img-stack img:first-child {
  margin-bottom: 24px;
}

#about-us .value-card {
  background: #ffffff;
  border: 1px solid #e5e2de;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  height: 100%;
}

#about-us .value-card h3 {
  font-size: 1.05rem;
  color: hsl(307, 20%, 31%);
  font-weight: 700;
  margin-bottom: 10px;
}

#about-us .value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

#about-us .stat-strip {
  background: hsl(307, 20%, 31%);
  border-radius: 8px;
  padding: 28px 20px;
  color: #f7f6f3;
}

#about-us .stat-strip .num {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: hsl(157, 28%, 47%);
}

#about-us .stat-strip .label {
  font-size: 0.85rem;
  color: #f0eef0;
}

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

#subscribe .newsletter-section {
  background-color:hsl(157, 28%, 47%, 0.08);
  padding:96px 0;
  font-family:'Merriweather', serif;
}
#subscribe .newsletter-section h2 {
  font-family:'Lato', sans-serif;
  color:hsl(97, 10%, 13%);
  font-weight:700;
  margin-bottom:16px;
}
#subscribe .newsletter-section p {
  color:hsl(97, 10%, 13%);
  font-size:1.05rem;
  margin-bottom:32px;
}
#subscribe .newsletter-card {
  background-color:#ffffff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:10px;
  box-shadow:0 4px 14px rgba(0,0,0,0.06);
  padding:48px 40px;
}
#subscribe .newsletter-form .form-control {
  border-radius:8px;
  border:1px solid rgba(0,0,0,0.15);
  padding:12px 16px;
  font-family:'Merriweather', serif;
  color:hsl(97, 10%, 13%);
}
#subscribe .newsletter-form .form-control:focus {
  border-color:hsl(157, 28%, 47%);
  box-shadow:0 0 0 0.2rem hsla(157, 28%, 47%, 0.25);
}
#subscribe .btn-subscribe {
  background-color:hsl(307, 20%, 31%);
  color:#f7f6f3;
  border:none;
  border-radius:8px;
  padding:12px 28px;
  font-family:'Lato', sans-serif;
  font-weight:700;
  transition:background-color 0.2s ease-in-out;
}
#subscribe .btn-subscribe:hover {
  background-color:hsl(157, 28%, 47%);
  color:#ffffff;
}
#subscribe .newsletter-note {
  font-size:0.9rem;
  color:hsl(97, 10%, 13%);
  opacity:0.75;
  margin-top:16px;
  margin-bottom:0;
}
@media (max-width:768px){
  #subscribe .newsletter-card {
    padding:32px 20px;
  }
}

#contact {
  background-color: #f7f6f3;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
  color: #222;
}
#contact h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(307, 20%, 31%);
  font-weight: 700;
}
#contact .lead-sub {
  color: #444;
  max-width: 640px;
}
#contact .contact-card {
  background: #ffffff;
  border: 1px solid #e0ddd9;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  padding: 32px;
}
#contact .contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
#contact .contact-info-item .icon-circle {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: hsl(157, 28%, 47%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
#contact .contact-info-item a {
  color: hsl(307, 20%, 31%);
  text-decoration: none;
  font-weight: 700;
}
#contact .contact-info-item a:hover {
  color: hsl(157, 28%, 47%);
  text-decoration: underline;
}
#contact .contact-info-item p {
  margin-bottom: 0;
  color: #333;
}
#contact .find-us-line {
  font-size: 0.95rem;
  color: #555;
  margin-top: -10px;
  margin-bottom: 22px;
}
#contact .find-us-line a {
  color: hsl(157, 28%, 47%);
  font-weight: 700;
  text-decoration: none;
}
#contact .find-us-line a:hover {
  text-decoration: underline;
}
#contact .form-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #222;
}
#contact .form-control {
  border: 1px solid #d8d5d0;
  border-radius: 6px;
  padding: 10px 14px;
  font-family: 'Merriweather', serif;
}
#contact .form-control:focus {
  border-color: hsl(157, 28%, 47%);
  box-shadow: 0 0 0 0.2rem rgba(83, 160, 132, 0.25);
}
#contact .btn-send {
  background-color: hsl(307, 20%, 31%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  transition: background-color 0.2s ease;
}
#contact .btn-send:hover {
  background-color: hsl(157, 28%, 47%);
  color: #ffffff;
}
#contact .hours-box {
  background: #f4f4f1;
  border: 1px solid #e0ddd9;
  border-radius: 8px;
  padding: 18px 20px;
  margin-top: 24px;
}
#contact .hours-box h6 {
  font-family: 'Lato', sans-serif;
  color: hsl(307, 20%, 31%);
  font-weight: 700;
  margin-bottom: 8px;
}
#contact .hours-box p {
  margin-bottom: 4px;
  color: #333;
  font-size: 0.95rem;
}
@media (max-width: 767px) {
  #contact { padding: 64px 0; }
  #contact .contact-card { padding: 22px; }
}

#notice {
  background-color: #f4f4f1;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
}
#notice .disclaimer-card {
  background-color: #ffffff;
  border: 1px solid #e0dede;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 48px 40px;
}
#notice .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: hsl(157, 28%, 47%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
#notice .icon-wrap i {
  color: #ffffff;
  font-size: 28px;
}
#notice h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(97, 10%, 13%);
  font-weight: 700;
  margin-bottom: 24px;
}
#notice p {
  color: #333333;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #notice .disclaimer-card {
    padding: 32px 24px;
  }
}

#contact-main {
  background-color: #f7f6f3;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
  color: #262626;
}
#contact-main h1,
#contact-main h2,
#contact-main h3 {
  font-family: 'Lato', sans-serif;
}
#contact-main .intro-heading {
  color: hsl(307, 20%, 31%);
  font-weight: 700;
}
#contact-main .intro-text {
  color: #333;
  max-width: 720px;
}
#contact-main .card {
  border: 1px solid #e0ded9;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  background-color: #ffffff;
}
#contact-main .info-card {
  background-color: hsl(97, 10%, 13%);
  color: #f7f6f3;
  border-radius: 8px;
  padding: 32px;
  height: 100%;
}
#contact-main .info-card h3 {
  color: #ffffff;
  margin-bottom: 20px;
}
#contact-main .info-card p,
#contact-main .info-card a {
  color: #f0efe9;
}
#contact-main .info-card a {
  text-decoration: none;
  border-bottom: 1px solid hsl(157, 28%, 47%);
}
#contact-main .info-card a:hover {
  color: hsl(157, 28%, 60%);
}
#contact-main .info-item {
  margin-bottom: 18px;
}
#contact-main .info-item span.label {
  display: block;
  font-weight: 700;
  color: hsl(157, 28%, 60%);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
#contact-main .map-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.95rem;
}
#contact-main .form-wrapper {
  padding: 36px;
}
#contact-main .form-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #262626;
}
#contact-main .form-control {
  border-radius: 6px;
  border: 1px solid #cfcac2;
  padding: 10px 14px;
}
#contact-main .form-control:focus {
  border-color: hsl(157, 28%, 47%);
  box-shadow: 0 0 0 0.2rem rgba(90, 158, 130, 0.25);
}
#contact-main .btn-submit {
  background-color: hsl(157, 28%, 47%);
  border: none;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
#contact-main .btn-submit:hover {
  background-color: hsl(157, 28%, 38%);
  color: #ffffff;
}
#contact-main .reply-note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 12px;
}
#contact-main .cta-bottom {
  text-align: center;
  margin-top: 72px;
}
#contact-main .cta-bottom .btn {
  background-color: hsl(307, 20%, 31%);
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  display: inline-block;
}
#contact-main .cta-bottom .btn:hover {
  background-color: hsl(307, 20%, 22%);
  color: #ffffff;
}
@media (max-width: 767px) {
  #contact-main {
    padding: 64px 0;
  }
  #contact-main .form-wrapper {
    padding: 24px;
  }
}

#about-content {
  background-color: #f7f6f3;
  font-family: 'Merriweather', serif;
  color: #2b2b2b;
  padding: 96px 0;
}
#about-content h1,
#about-content h2,
#about-content h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(97, 10%, 13%);
}
#about-content .about-hero {
  margin-bottom: 88px;
}
#about-content .about-hero p.lead {
  color: #444;
  max-width: 760px;
}
#about-content .accent-text {
  color: hsl(157, 28%, 47%);
}
#about-content .about-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e0ded9;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
#about-content .content-block {
  margin-bottom: 80px;
}
#about-content .content-block:last-of-type {
  margin-bottom: 0;
}
#about-content .values-card {
  background-color: #ffffff;
  border: 1px solid #e5e3de;
  border-radius: 8px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
#about-content .values-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
#about-content .values-card .num {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(307, 20%, 31%);
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}
#about-content .cta-box {
  background-color: hsl(307, 20%, 31%);
  border-radius: 8px;
  padding: 48px;
  text-align: center;
  margin-top: 96px;
}
#about-content .cta-box h2,
#about-content .cta-box p {
  color: #f7f6f3;
}
#about-content .cta-box .btn {
  background-color: hsl(157, 28%, 47%);
  color: #ffffff;
  border: none;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 6px;
}
#about-content .cta-box .btn:hover {
  background-color: hsl(157, 28%, 40%);
  color: #ffffff;
}
#about-content .section-tag {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: hsl(157, 28%, 47%);
  font-weight: 700;
}
@media (max-width: 767px) {
  #about-content {
    padding: 64px 0;
  }
  #about-content .content-block {
    margin-bottom: 56px;
  }
  #about-content .cta-box {
    padding: 32px 20px;
  }
}
