@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Merriweather:wght@300;400;700&display=swap');

:root {
  --primary: hsl(143, 61%, 31%);
  --secondary: hsl(149, 56%, 16%);
  --accent: hsl(135, 82%, 37%);
  --ty-primary: hsl(143, 61%, 31%);
  --ty-secondary: hsl(149, 56%, 16%);
  --ty-accent: hsl(135, 82%, 37%);
}

body{
  font-family: 'Merriweather', serif;
  color: #222;
  background-color: #ffffff;
}
h1, h2, h3, h4, h5, h6{
  font-family: 'Lato', sans-serif;
}
.navbar{
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}
.navbar-brand{
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand:hover{
  color: var(--primary);
}
.navbar-nav .nav-link{
  color: #333;
  font-weight: 600;
  padding: 0.5rem 1rem;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus{
  color: var(--primary);
}
.navbar-toggler{
  border-color: var(--primary);
}
.navbar-toggler:focus{
  box-shadow: 0 0 0 0.2rem hsla(143, 61%, 31%, 0.25);
}

footer {
  background: hsl(149, 56%, 16%);
  color: #f5f5f5;
  font-family: 'Merriweather', serif;
  padding: 48px 0 24px;
  border-radius: 24px 24px 0 0;
}
footer h5, footer h6 {
  font-family: 'Lato', sans-serif;
  color: #ffffff;
  margin-bottom: 16px;
}
footer a {
  color: #e0e0e0;
  text-decoration: none;
}
footer a:hover {
  color: hsl(135, 82%, 37%);
  text-decoration: underline;
}
footer p {
  color: #d8d8d8;
  font-size: 0.95rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: hsl(143, 61%, 31%);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  margin-right: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.footer-social a:hover {
  background: hsl(135, 82%, 37%);
  transform: translateY(-3px);
  color: #ffffff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 32px;
  padding-top: 16px;
  font-size: 0.85rem;
  color: #cfcfcf;
}
#consentBox {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #ffffff;
  border-top: 3px solid hsl(143, 61%, 31%);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  border-radius: 20px 20px 0 0;
  padding: 20px;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Merriweather', serif;
}
#consentBox h5 {
  font-family: 'Lato', sans-serif;
  color: hsl(149, 56%, 16%);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
#consentBox p, #consentBox li {
  color: #333333;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
#consentBox ul {
  padding-left: 18px;
  margin-bottom: 12px;
}
.consent-btn {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 12px;
  border: none;
  font-size: 0.9rem;
  flex: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-accept-all {
  background: hsl(143, 61%, 31%);
  color: #ffffff;
}
.btn-accept-all:hover {
  background: hsl(135, 82%, 37%);
  color: #ffffff;
}
.btn-reject-optional {
  background: hsl(149, 56%, 16%);
  color: #ffffff;
}
.btn-reject-optional:hover {
  background: #0d2a1c;
  color: #ffffff;
}
.btn-manage {
  color: hsl(143, 61%, 31%);
  font-size: 0.85rem;
  text-decoration: underline;
}
.btn-manage:hover {
  color: hsl(135, 82%, 37%);
}

#services-page {
  font-family: 'Merriweather', serif;
  color: #222;
  background: #ffffff;
  padding: 56px 0;
}
#services-page h1, #services-page h2, #services-page h3, #services-page h4 {
  font-family: 'Lato', sans-serif;
}
#services-page .page-header {
  margin-bottom: 48px;
}
#services-page .page-header h1 {
  color: hsl(149, 56%, 16%);
  font-weight: 700;
}
#services-page .page-header p {
  color: #333;
  max-width: 760px;
}
#services-page .intro-note {
  background: #f5faf7;
  border: 1px solid #dcece2;
  border-radius: 20px;
  padding: 24px 28px;
  margin-bottom: 48px;
}
#services-page .service-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #e2e8e4;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(20, 60, 40, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
  margin-bottom: 24px;
}
#services-page .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(20, 60, 40, 0.12);
  border-color: hsl(135, 82%, 37%);
}
#services-page .service-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: hsl(143, 61%, 31%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
#services-page .service-body h3 {
  color: hsl(149, 56%, 16%);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}
#services-page .service-body p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 10px;
}
#services-page .service-price {
  display: inline-block;
  background: #eaf7ee;
  color: hsl(149, 56%, 16%);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
}
#services-page .details-section {
  background: #f5faf7;
  border-radius: 24px;
  padding: 40px;
  margin-top: 56px;
}
#services-page .details-section h2 {
  color: hsl(149, 56%, 16%);
  font-weight: 700;
  margin-bottom: 20px;
}
#services-page table {
  font-family: 'Merriweather', serif;
  font-size: 0.92rem;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
}
#services-page table thead {
  background: hsl(143, 61%, 31%);
  color: #ffffff;
}
#services-page table thead th {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  border: none;
}
#services-page table td, #services-page table th {
  padding: 12px 14px;
  vertical-align: middle;
}
#services-page table tbody tr {
  border-bottom: 1px solid #e2e8e4;
}
#services-page .cta-box {
  background: hsl(149, 56%, 16%);
  color: #ffffff;
  border-radius: 24px;
  padding: 40px;
  margin-top: 56px;
  text-align: center;
}
#services-page .cta-box h2 {
  color: #ffffff;
  font-weight: 700;
}
#services-page .cta-box p {
  color: #e6f2ea;
  max-width: 640px;
  margin: 0 auto 20px auto;
}
#services-page .btn-cta {
  background: hsl(135, 82%, 37%);
  color: #062712;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}
#services-page .btn-cta:hover {
  background: #ffffff;
  color: hsl(149, 56%, 16%);
}
@media (max-width: 576px) {
  #services-page .service-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero-section{background-color:#f5faf7;padding:56px 0;font-family:'Merriweather',serif;color:#222;}
.hero-section h1{font-family:'Lato',sans-serif;font-weight:800;color:hsl(149, 56%, 16%);}
.hero-section h2{font-family:'Lato',sans-serif;font-weight:600;color:hsl(143, 61%, 31%);font-size:1.25rem;}
.hero-img{aspect-ratio:3/2;width:100%;height:auto;object-fit:cover;border-radius:20px;box-shadow:0 4px 18px rgba(0,0,0,0.1);border:1px solid #e0e0e0;}
.hero-list{list-style:none;padding-left:0;}
.hero-list li{margin-bottom:12px;font-size:1rem;display:flex;align-items:flex-start;gap:10px;}
.hero-list i{color:hsl(135, 82%, 37%);font-size:1.2rem;margin-top:2px;}
.btn-hero-primary{background-color:hsl(143, 61%, 31%);border:none;color:#fff;font-family:'Lato',sans-serif;font-weight:700;padding:12px 28px;border-radius:18px;transition:all 0.3s ease;}
.btn-hero-primary:hover{background-color:hsl(149, 56%, 16%);color:#fff;transform:translateY(-2px);}
.btn-hero-secondary{background-color:transparent;border:2px solid hsl(143, 61%, 31%);color:hsl(143, 61%, 31%);font-family:'Lato',sans-serif;font-weight:700;padding:10px 26px;border-radius:18px;transition:all 0.3s ease;}
.btn-hero-secondary:hover{background-color:hsl(143, 61%, 31%);color:#fff;transform:translateY(-2px);}
@media(max-width:767px){.hero-section h1{font-size:1.8rem;}.hero-section{padding:48px 0;}}

#reviews {
  padding: 52px 0;
  background: #f5f9f6;
  font-family: 'Merriweather', serif;
  color: #222;
}
#reviews h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(149, 56%, 16%);
}
#reviews .lead-sub {
  color: #444;
  max-width: 720px;
}
#reviews .review-card {
  background: #fff;
  border: 1px solid #e0e6e2;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#reviews .review-card .stars {
  color: hsl(135, 82%, 37%);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
#reviews .review-card .stars .empty {
  color: #d5dbd7;
}
#reviews .review-card p.review-text {
  font-size: 0.97rem;
  line-height: 1.6;
  color: #2b2b2b;
  flex-grow: 1;
}
#reviews .review-card .reviewer {
  margin-top: 14px;
  border-top: 1px solid #eef1ef;
  padding-top: 10px;
}
#reviews .review-card .reviewer strong {
  font-family: 'Lato', sans-serif;
  color: hsl(143, 61%, 31%);
  display: block;
  font-size: 0.95rem;
}
#reviews .review-card .reviewer span {
  font-size: 0.82rem;
  color: #666;
}
#reviews .review-card.compact {
  padding: 18px;
}
#reviews .review-card.wide p.review-text {
  font-size: 1rem;
}
#reviews .review-badge {
  display: inline-block;
  background: hsl(143, 61%, 31%);
  color: #fff;
  font-size: 0.72rem;
  font-family: 'Lato', sans-serif;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
}
#reviews .summary-box {
  background: hsl(149, 56%, 16%);
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#reviews .summary-box h3 {
  font-family: 'Lato', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 4px;
  color: #fff;
}
#reviews .summary-box p {
  color: #e6f3ea;
  margin-bottom: 18px;
  font-size: 0.92rem;
}
#reviews .summary-box .divider {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 14px 0;
}
@media (max-width: 767px) {
  #reviews .summary-box { margin-bottom: 20px; }
}

#value {
  background-color: #ffffff;
  padding: 52px 0;
  font-family: 'Merriweather', serif;
}
#value .section-heading {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(149, 56%, 16%);
}
#value .section-sub {
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}
#value .value-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 28px 24px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#value .value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  border-color: hsl(135, 82%, 37%);
}
#value .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: hsl(143, 61%, 31%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: background-color 0.25s ease;
}
#value .value-card:hover .icon-wrap {
  background-color: hsl(135, 82%, 37%);
}
#value .value-title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(149, 56%, 16%);
  margin-bottom: 10px;
  font-size: 1.15rem;
}
#value .value-text {
  color: #333333;
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 0;
}

#about .about-section {
  background-color: #ffffff;
  padding: 52px 0;
  font-family: 'Merriweather', serif;
  color: #262626;
}
#about .about-section h2, #about .about-section h3, #about .about-section h4 {
  font-family: 'Lato', sans-serif;
  color: hsl(149, 56%, 16%);
}
#about .about-section .lead-text {
  font-size: 1.05rem;
  line-height: 1.75;
}
#about .about-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
#about .value-card {
  background-color: #f6faf7;
  border: 1px solid #dfe8e2;
  border-radius: 20px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
#about .value-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
#about .value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #3a3a3a;
}
#about .team-card {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 20px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
#about .team-card .role {
  color: hsl(143, 61%, 31%);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
#about .team-card p.desc {
  font-size: 0.95rem;
  color: #3a3a3a;
  margin-bottom: 0;
}
#about .stat-strip {
  background-color: hsl(149, 56%, 16%);
  border-radius: 20px;
  padding: 24px;
  color: #ffffff;
}
#about .stat-strip .stat-number {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: hsl(135, 82%, 37%);
}
#about .stat-strip .stat-label {
  font-size: 0.85rem;
  color: #f0f0f0;
}

#statistics {
  background: hsl(143, 30%, 97%);
  padding: 52px 0;
  font-family: 'Merriweather', serif;
}
#statistics h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(149, 56%, 16%);
}
#statistics .lead-text {
  color: #333;
  max-width: 720px;
}
#statistics .stat-card {
  background: #fff;
  border: 1px solid hsl(143, 20%, 85%);
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#statistics .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.09);
}
#statistics .stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: hsl(135, 82%, 37%, 0.12);
  color: hsl(143, 61%, 31%);
  font-size: 1.7rem;
  margin-bottom: 14px;
  animation: popIn 0.6s ease-out;
}
@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
#statistics .stat-number {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: hsl(149, 56%, 16%);
  display: block;
  line-height: 1.1;
  animation: countUp 0.9s ease-out;
}
@keyframes countUp {
  0% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}
#statistics .stat-label {
  font-weight: 700;
  color: #222;
  margin-top: 6px;
  font-size: 1rem;
}
#statistics .stat-context {
  color: #555;
  font-size: 0.88rem;
  margin-top: 4px;
}
@media (max-width: 576px) {
  #statistics .stat-number { font-size: 2rem; }
  #statistics .stat-icon { width: 54px; height: 54px; font-size: 1.4rem; }
}

.services-section {
  background: #f5f9f6;
  padding: 52px 0;
  font-family: 'Merriweather', serif;
}
.services-section h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(149, 56%, 16%);
  font-weight: 700;
}
.services-section .lead-text {
  color: #333;
  max-width: 700px;
}
.service-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid #dfe7e2;
  border-radius: 20px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  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(20, 90, 50, 0.15);
  border-color: hsl(135, 82%, 37%);
}
.service-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: hsl(143, 61%, 31%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: background 0.25s ease;
}
.service-card:hover .service-icon {
  background: hsl(135, 82%, 37%);
}
.service-title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(149, 56%, 16%);
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.service-desc {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.service-price {
  display: inline-block;
  background: #eaf6ee;
  color: hsl(149, 56%, 16%);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
}

#reach-us {
  padding: 52px 0;
  background: #ffffff;
  font-family: 'Merriweather', serif;
  color: #222222;
}
#reach-us h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(149, 56%, 16%);
  font-weight: 700;
}
#reach-us .subtitle {
  color: #444444;
  font-size: 1.05rem;
  margin-bottom: 32px;
}
#reach-us .contact-card,
#reach-us .form-card {
  background: #f7fbf8;
  border: 1px solid #dde9e0;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  padding: 32px;
  height: 100%;
}
#reach-us .info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
#reach-us .info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: hsl(143, 61%, 31%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
#reach-us .info-item h6 {
  font-family: 'Lato', sans-serif;
  margin-bottom: 4px;
  color: hsl(149, 56%, 16%);
  font-weight: 700;
}
#reach-us .info-item p,
#reach-us .info-item a {
  margin-bottom: 0;
  color: #333333;
  text-decoration: none;
}
#reach-us .info-item a:hover {
  color: hsl(143, 61%, 31%);
  text-decoration: underline;
}
#reach-us .map-link {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  color: hsl(135, 82%, 27%);
  text-decoration: underline;
}
#reach-us .map-link:hover {
  color: hsl(149, 56%, 16%);
}
#reach-us .form-card h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(149, 56%, 16%);
  font-weight: 700;
  margin-bottom: 18px;
}
#reach-us .form-label {
  font-family: 'Lato', sans-serif;
  color: #222222;
  font-weight: 700;
  font-size: 0.92rem;
}
#reach-us .form-control {
  border-radius: 12px;
  border: 1px solid #cfd9d2;
  padding: 10px 14px;
  font-family: 'Merriweather', serif;
  font-size: 0.95rem;
}
#reach-us .form-control:focus {
  border-color: hsl(143, 61%, 31%);
  box-shadow: 0 0 0 0.2rem rgba(28, 145, 70, 0.2);
}
#reach-us .btn-send {
  background: hsl(143, 61%, 31%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 12px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  transition: background 0.2s ease;
}
#reach-us .btn-send:hover {
  background: hsl(149, 56%, 16%);
  color: #ffffff;
}
#reach-us .hours-box {
  background: hsl(143, 61%, 31%);
  color: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 8px;
}
#reach-us .hours-box p {
  margin-bottom: 4px;
  color: #ffffff;
}
#reach-us .hours-box strong {
  color: #ffffff;
}
@media (max-width: 767px) {
  #reach-us .contact-card,
  #reach-us .form-card {
    padding: 22px;
  }
}

#disclaimer {
  background-color: #f5f7f6;
  padding: 52px 0;
  font-family: 'Merriweather', serif;
  color: #2b2b2b;
}
#disclaimer .disclaimer-card {
  background-color: #ffffff;
  border: 1px solid #dfe5e2;
  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: 16px;
  background-color: hsl(143, 61%, 31%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
}
#disclaimer h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(149, 56%, 16%);
  margin-bottom: 16px;
}
#disclaimer p {
  color: #333333;
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  #disclaimer .disclaimer-card {
    padding: 26px;
  }
}



  

  .thankyou-section {
    font-family: 'Merriweather', serif;
    background: linear-gradient(135deg, hsl(149, 56%, 16%) 0%, hsl(143, 61%, 31%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 3rem 1rem;
  }

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

  .thankyou-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--ty-accent), var(--ty-primary), var(--ty-secondary));
  }

  .thankyou-heading {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: var(--ty-secondary);
    letter-spacing: -0.02em;
  }

  .thankyou-subtext {
    color: #4a4a4a;
    line-height: 1.8;
    font-weight: 300;
  }

  .check-wrapper {
    width: 96px;
    height: 96px;
    margin: 0 auto 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle, hsl(135, 82%, 37%) 0%, hsl(143, 61%, 31%) 100%);
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.15);
    animation: pop-in 0.5s ease-out;
  }

  .check-wrapper svg {
    width: 50px;
    height: 50px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: draw-check 0.6s ease-out 0.3s both;
  }

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

  @keyframes draw-check {
    0% { stroke-dasharray: 48; stroke-dashoffset: 48; }
    100% { stroke-dasharray: 48; stroke-dashoffset: 0; }
  }

  .info-list {
    text-align: left;
    background: hsl(143, 61%, 97%);
    border-left: 4px solid var(--ty-accent);
    border-radius: 0.5rem;
    padding: 1.25rem 1.5rem;
    margin-top: 1.75rem;
  }

  .info-list .list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--ty-secondary);
    font-family: 'Merriweather', serif;
    font-size: 0.98rem;
  }

  .info-list .list-item:last-child {
    margin-bottom: 0;
  }

  .info-list .list-item i {
    color: var(--ty-primary);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
  }

  .btn-home {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    background-color: var(--ty-primary);
    border-color: var(--ty-primary);
    color: #fff;
    padding: 0.75rem 2.5rem;
    border-radius: 3rem;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(34, 128, 62, 0.35);
  }

  .btn-home:hover,
  .btn-home:focus {
    background-color: var(--ty-secondary);
    border-color: var(--ty-secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(19, 66, 39, 0.4);
  }

  .thankyou-badge {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ty-primary);
    background: hsl(143, 61%, 95%);
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.25rem;
  }

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

#contact-main {
    background-color: #f5faf7;
    padding: 56px 0;
    font-family: 'Merriweather', serif;
    color: #222;
}
#contact-main h1, #contact-main h2, #contact-main h3 {
    font-family: 'Lato', sans-serif;
    color: hsl(149, 56%, 16%);
}
#contact-main .intro-text {
    max-width: 720px;
    margin: 0 auto 40px;
    color: #333;
}
#contact-main .card {
    border: 1px solid #dde5e0;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    background-color: #fff;
    padding: 32px;
}
#contact-main .info-card {
    background-color: hsl(149, 56%, 16%);
    color: #f5faf7;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    height: 100%;
}
#contact-main .info-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
}
#contact-main .info-card p, #contact-main .info-card li {
    color: #e6f2ec;
}
#contact-main .info-card a {
    color: #b9f2d0;
    text-decoration: none;
    font-weight: 700;
}
#contact-main .info-card a:hover {
    color: #ffffff;
    text-decoration: underline;
}
#contact-main .info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}
#contact-main .info-list li {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
#contact-main .info-list li i {
    color: hsl(135, 82%, 37%);
    margin-top: 4px;
}
#contact-main .find-us {
    background-color: rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px;
    margin-top: 16px;
}
#contact-main .find-us a {
    color: #b9f2d0;
    font-weight: 700;
}
#contact-main .form-label {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #222;
}
#contact-main .form-control {
    border-radius: 12px;
    border: 1px solid #cdd7d1;
    padding: 12px 14px;
    font-family: 'Merriweather', serif;
}
#contact-main .form-control:focus {
    border-color: hsl(143, 61%, 31%);
    box-shadow: 0 0 0 0.2rem hsla(143, 61%, 31%, 0.2);
}
#contact-main .btn-submit {
    background-color: hsl(143, 61%, 31%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 14px 32px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    transition: background-color 0.2s ease;
}
#contact-main .btn-submit:hover {
    background-color: hsl(149, 56%, 16%);
    color: #ffffff;
}
#contact-main .reply-badge {
    display: inline-block;
    background-color: hsl(135, 82%, 37%);
    color: #ffffff;
    border-radius: 12px;
    padding: 6px 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
}
#contact-main .cta-final {
    text-align: center;
    margin-top: 48px;
}
#contact-main .cta-final a {
    display: inline-block;
    background-color: hsl(135, 82%, 37%);
    color: #ffffff;
    border-radius: 14px;
    padding: 14px 34px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease;
}
#contact-main .cta-final a:hover {
    background-color: hsl(149, 56%, 16%);
    color: #ffffff;
}
@media (max-width: 767px) {
    #contact-main .card, #contact-main .info-card {
        padding: 22px;
    }
}

#portfolio-section {
  font-family: 'Merriweather', serif;
  background-color: #ffffff;
  color: #222;
  padding: 52px 0;
}
#portfolio-section h1,
#portfolio-section h2,
#portfolio-section h3,
#portfolio-section h4 {
  font-family: 'Lato', sans-serif;
  color: hsl(149, 56%, 16%);
}
#portfolio-section .intro-block {
  max-width: 820px;
  margin: 0 auto 40px auto;
  text-align: center;
}
#portfolio-section .intro-block p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
}
#portfolio-section .badge-category {
  background-color: hsl(135, 82%, 37%);
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  display: inline-block;
}
#portfolio-section .card {
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  background-color: #ffffff;
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s ease;
}
#portfolio-section .card:hover {
  transform: translateY(-4px);
}
#portfolio-section .card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
#portfolio-section .card-body {
  padding: 22px;
}
#portfolio-section .card-title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(149, 56%, 16%);
  margin-top: 12px;
}
#portfolio-section .card-text {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}
#portfolio-section .btn-details {
  background-color: hsl(143, 61%, 31%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 8px 18px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
#portfolio-section .btn-details:hover {
  background-color: hsl(135, 82%, 37%);
  color: #ffffff;
}
#portfolio-section .modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}
#portfolio-section .modal-header {
  background-color: hsl(149, 56%, 16%);
  color: #ffffff;
  border-bottom: none;
}
#portfolio-section .modal-header .btn-close {
  filter: invert(1);
}
#portfolio-section .modal-body {
  color: #333;
  line-height: 1.7;
}
#portfolio-section .modal-body img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}
#portfolio-section .table-wrap {
  background-color: #f5faf7;
  border-radius: 20px;
  border: 1px solid #dfeee5;
  padding: 32px;
  margin-top: 52px;
}
#portfolio-section table {
  margin-bottom: 0;
  font-family: 'Merriweather', serif;
}
#portfolio-section table th {
  font-family: 'Lato', sans-serif;
  color: hsl(149, 56%, 16%);
  background-color: #eaf6ee;
  white-space: nowrap;
}
#portfolio-section table td {
  color: #333;
}
#portfolio-section .cta-box {
  background-color: hsl(143, 61%, 31%);
  color: #ffffff;
  border-radius: 20px;
  padding: 44px 32px;
  text-align: center;
  margin-top: 52px;
}
#portfolio-section .cta-box h2 {
  color: #ffffff;
}
#portfolio-section .cta-box p {
  color: #eafaf0;
  max-width: 640px;
  margin: 0 auto 20px auto;
}
#portfolio-section .cta-box .btn-cta {
  background-color: #ffffff;
  color: hsl(149, 56%, 16%);
  border-radius: 14px;
  padding: 12px 30px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
#portfolio-section .btn-cta:hover {
  background-color: hsl(135, 82%, 37%);
  color: #ffffff;
}
@media (max-width: 576px) {
  #portfolio-section .table-wrap {
    padding: 18px;
  }
}
