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

:root {
  --primary: hsl(155, 62%, 28%);
  --secondary: hsl(169, 55%, 7%);
  --accent: hsl(335, 72%, 61%);
  --clr-primary: hsl(155, 62%, 28%);
  --clr-secondary: hsl(169, 55%, 7%);
  --clr-accent: hsl(335, 72%, 61%);
}

body {
  font-family: 'Playfair Display', serif;
  color: #222;
  background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Ubuntu', sans-serif;
}
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #e9ecef;
}
.navbar-brand {
  font-family: 'Ubuntu', 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: var(--secondary);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 16px;
  transition: background-color 0.2s, color 0.2s;
}
.navbar-nav .nav-link:hover {
  background-color: var(--primary);
  color: #fff;
}
.navbar-toggler {
  border-radius: 12px;
  border: 1px solid var(--primary);
}

footer {
  background: hsl(169, 55%, 7%);
  color: #f5f5f5;
  font-family: 'Playfair Display', serif;
  padding: 80px 0 32px;
  border-radius: 24px 24px 0 0;
}
footer h5 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(155, 62%, 55%);
  margin-bottom: 20px;
}
footer a {
  color: #f5f5f5;
  text-decoration: none;
}
footer a:hover {
  color: hsl(335, 72%, 61%);
}
footer .footer-desc {
  color: #d8d8d8;
}
footer hr {
  border-color: rgba(255,255,255,0.15);
  margin: 32px 0 20px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: hsl(155, 62%, 28%);
  color: #fff;
  border-radius: 12px;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background 0.3s;
}
.social-icons a:hover {
  background: hsl(335, 72%, 61%);
  color: #fff;
}
.footer-list {
  list-style: none;
  padding-left: 0;
}
.footer-list li {
  margin-bottom: 10px;
}
#privacyBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: hsl(169, 55%, 7%);
  color: #f5f5f5;
  padding: 20px;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Playfair Display', serif;
}
#privacyBanner h5 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(155, 62%, 55%);
  font-size: 1.1rem;
}
#privacyBanner p, #privacyBanner li {
  font-size: 0.9rem;
  color: #e8e8e8;
}
.cookie-btn {
  font-family: 'Ubuntu', sans-serif;
  border-radius: 16px;
  padding: 10px 20px;
  font-weight: 500;
  border: 2px solid transparent;
  transition: all 0.3s;
  width: 100%;
}
.btn-accept-all {
  background: hsl(155, 62%, 28%);
  color: #fff;
}
.btn-accept-all:hover {
  background: hsl(155, 62%, 22%);
  color: #fff;
}
.btn-reject-optional {
  background: transparent;
  color: #f5f5f5;
  border-color: hsl(335, 72%, 61%);
}
.btn-reject-optional:hover {
  background: hsl(335, 72%, 61%);
  color: #fff;
}
.cookie-manage-link {
  color: hsl(335, 72%, 61%);
  font-size: 0.85rem;
  text-decoration: underline;
}

#about-page {
  font-family: 'Playfair Display', serif;
  color: #222;
  background: #fff;
  padding: 96px 0;
}
#about-page h1, #about-page h2, #about-page h3 {
  font-family: 'Ubuntu', sans-serif;
}
#about-page .about-hero {
  margin-bottom: 88px;
}
#about-page .about-hero h1 {
  color: hsl(169, 55%, 7%);
  font-weight: 700;
  margin-bottom: 20px;
}
#about-page .about-hero p.lead {
  color: #333;
  max-width: 760px;
}
#about-page .badge-facts {
  display: inline-block;
  background: hsl(155, 62%, 28%);
  color: #fff;
  padding: 8px 18px;
  border-radius: 18px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.9rem;
  margin: 4px 6px 4px 0;
}
#about-page .section-block {
  margin-bottom: 88px;
}
#about-page h2 {
  color: hsl(155, 62%, 28%);
  font-weight: 700;
  margin-bottom: 18px;
}
#about-page h3 {
  color: hsl(169, 55%, 7%);
  font-weight: 600;
  margin-bottom: 12px;
}
#about-page p {
  line-height: 1.75;
  color: #2b2b2b;
}
#about-page .img-wrap {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}
#about-page .img-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
#about-page .values-card {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  border: 1px solid #e5e5e5;
}
#about-page .values-card h3 {
  color: hsl(155, 62%, 28%);
  font-size: 1.15rem;
}
#about-page .values-card p {
  font-size: 0.98rem;
  margin-bottom: 0;
}
#about-page .stats-strip {
  background: hsl(169, 55%, 7%);
  border-radius: 20px;
  padding: 40px 32px;
  color: #fff;
}
#about-page .stats-strip .stat-number {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  color: hsl(335, 72%, 61%);
}
#about-page .stats-strip .stat-label {
  color: #f2f2f2;
  font-size: 0.92rem;
}
#about-page .cta-box {
  background: hsl(155, 62%, 28%);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  color: #fff;
  margin-top: 96px;
}
#about-page .cta-box h2 {
  color: #fff;
}
#about-page .cta-box p {
  color: #eef7f2;
}
#about-page .cta-box .btn {
  background: hsl(335, 72%, 61%);
  border: none;
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 16px;
}
#about-page .cta-box .btn:hover {
  background: #fff;
  color: hsl(155, 62%, 28%);
}
@media (max-width: 767px) {
  #about-page { padding: 64px 0; }
  #about-page .section-block { margin-bottom: 56px; }
}

#services-section {
  background: #f8f9fa;
  padding: 100px 0;
  font-family: 'Playfair Display', serif;
  color: #222;
}
#services-section h1,
#services-section h2,
#services-section h3,
#services-section h4 {
  font-family: 'Ubuntu', sans-serif;
}
#services-section .intro-block {
  max-width: 760px;
  margin: 0 auto 64px auto;
  text-align: center;
}
#services-section .intro-block h1 {
  color: hsl(169, 55%, 7%);
  font-size: 2.1rem;
  margin-bottom: 16px;
}
#services-section .intro-block p {
  color: #333;
  font-size: 1.05rem;
}
#services-section .service-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#services-section .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.1);
  border-color: hsl(155, 62%, 28%);
}
#services-section .service-icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: hsl(155, 62%, 28%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}
#services-section .service-card:hover .service-icon {
  background: hsl(335, 72%, 61%);
}
#services-section .service-content {
  flex-grow: 1;
}
#services-section .service-content h3 {
  color: hsl(169, 55%, 7%);
  font-size: 1.25rem;
  margin-bottom: 6px;
}
#services-section .service-content p {
  color: #444;
  font-size: 0.98rem;
  margin-bottom: 10px;
}
#services-section .service-price {
  display: inline-block;
  background: hsl(169, 55%, 7%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 14px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
}
#services-section .faq-block {
  margin-top: 88px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
#services-section .faq-block h2 {
  color: hsl(169, 55%, 7%);
  text-align: center;
  margin-bottom: 36px;
  font-size: 1.8rem;
}
#services-section .accordion-item {
  border: 1px solid #e2e2e2;
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 14px;
}
#services-section .accordion-button {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  color: hsl(169, 55%, 7%);
  background: #fff;
}
#services-section .accordion-button:not(.collapsed) {
  background: hsl(155, 62%, 28%);
  color: #fff;
}
#services-section .accordion-button:focus {
  box-shadow: none;
}
#services-section .accordion-body {
  color: #333;
  background: #fdfdfd;
}
#services-section .cta-block {
  margin-top: 80px;
  background: hsl(155, 62%, 28%);
  border-radius: 22px;
  padding: 48px 32px;
  text-align: center;
  color: #fff;
}
#services-section .cta-block h2 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.7rem;
}
#services-section .cta-block p {
  color: #eafaf3;
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
#services-section .cta-block .btn {
  background: hsl(335, 72%, 61%);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 16px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}
#services-section .cta-block .btn:hover {
  background: #fff;
  color: hsl(169, 55%, 7%);
}
@media (max-width: 576px) {
  #services-section .service-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero-section {
  background-color: #f8f9fa;
  padding: 64px 0 88px 0;
  font-family: 'Playfair Display', serif;
  color: #222;
}
.hero-section h1 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(169, 55%, 7%);
  font-weight: 700;
  font-size: 2.3rem;
  margin-bottom: 12px;
}
.hero-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(155, 62%, 28%);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 24px;
  max-width: 540px;
}
.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.info-strip .info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  border: 1px solid hsl(155, 62%, 28%, 0.2);
  border-radius: 18px;
  padding: 8px 16px;
  font-size: 0.92rem;
  color: hsl(169, 55%, 7%);
}
.info-strip .info-item i {
  color: hsl(335, 72%, 61%);
  font-size: 1.1rem;
}
.hero-btn-primary {
  background-color: hsl(155, 62%, 28%);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 12px 28px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.25s ease, transform 0.2s ease;
}
.hero-btn-primary:hover {
  background-color: hsl(335, 72%, 61%);
  color: #fff;
  transform: translateY(-2px);
}
.hero-btn-secondary {
  background-color: transparent;
  color: hsl(169, 55%, 7%);
  border: 2px solid hsl(169, 55%, 7%);
  border-radius: 18px;
  padding: 10px 26px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
  margin-left: 12px;
}
.hero-btn-secondary:hover {
  background-color: hsl(169, 55%, 7%);
  color: #fff;
}
.hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .hero-section { padding: 48px 0 56px 0; }
  .hero-btn-secondary { margin-left: 0; margin-top: 12px; display: inline-block; }
}

#company .about-company {
  background: #f8f9fa;
  padding: 96px 0;
  font-family: 'Playfair Display', serif;
  color: #222;
}
#company .about-company h2, #company .about-company h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(169, 55%, 7%);
}
#company .about-company .lead-text {
  font-size: 1.05rem;
  line-height: 1.75;
}
#company .about-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
#company .about-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  border: 1px solid #e5e5e5;
}
#company .about-values-card {
  background: hsl(155, 62%, 28%);
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  height: 100%;
}
#company .about-values-card h4 {
  font-family: 'Ubuntu', sans-serif;
  color: #fff;
}
#company .about-values-card p {
  color: #f0f0f0;
  margin-bottom: 0;
}
#company .about-stat-box {
  background: hsl(169, 55%, 7%);
  color: #fff;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}
#company .about-stat-box .num {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(335, 72%, 61%);
  display: block;
}
#company .about-stat-box .lbl {
  color: #e5e5e5;
  font-size: 0.9rem;
}

.services-section {
  background: #f8f9fa;
  padding: 96px 0;
}
.services-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(169, 55%, 7%);
  font-weight: 700;
}
.services-section .lead-text {
  font-family: 'Playfair Display', serif;
  color: #333;
  max-width: 700px;
}
.service-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  padding: 36px 24px;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(19, 89, 62, 0.18);
  border-color: hsl(155, 62%, 28%);
}
.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: hsl(155, 62%, 28%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 32px;
  transition: background 0.3s ease;
}
.service-card:hover .service-icon {
  background: hsl(335, 72%, 61%);
}
.service-card h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.2rem;
  color: hsl(169, 55%, 7%);
  margin-bottom: 12px;
  font-weight: 700;
}
.service-card p {
  font-family: 'Playfair Display', serif;
  color: #444;
  font-size: 0.96rem;
  line-height: 1.55;
  margin-bottom: 18px;
}
.service-price {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: hsl(155, 62%, 28%);
  font-size: 1.15rem;
  border-top: 1px solid #eee;
  padding-top: 14px;
  margin-top: auto;
}
.service-card-wrapper {
  display: flex;
}

#advantages {
  padding: 96px 0;
  background-color: #f8f9fa;
}
#advantages h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(169, 55%, 7%);
  font-weight: 700;
}
#advantages .lead-text {
  font-family: 'Playfair Display', serif;
  color: #333;
  max-width: 700px;
}
#advantages .advantage-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
#advantages .advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(19, 87, 60, 0.18);
  border-color: hsl(155, 62%, 28%);
}
#advantages .advantage-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: hsl(155, 62%, 28%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
#advantages .advantage-card:hover .advantage-icon {
  background: hsl(335, 72%, 61%);
}
#advantages .advantage-card h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.15rem;
  color: hsl(169, 55%, 7%);
  font-weight: 600;
  margin-bottom: 12px;
}
#advantages .advantage-card p {
  font-family: 'Playfair Display', serif;
  color: #444;
  font-size: 0.96rem;
  line-height: 1.55;
  margin-bottom: 0;
}

#feedback {
  padding: 96px 0;
  background: #f8f9fa;
  font-family: 'Playfair Display', serif;
  color: #222;
}
#feedback h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(169, 55%, 7%);
  font-weight: 700;
}
#feedback .lead-sub {
  color: #444;
  max-width: 680px;
  margin: 0 auto;
}
#feedback .review-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#feedback .review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
#feedback .review-card.accent-card {
  background: hsl(155, 62%, 28%);
  color: #fff;
  border: none;
}
#feedback .review-card.accent-card .review-name, #feedback .review-card.accent-card .review-location, #feedback .review-card.accent-card .review-text {
  color: #fff;
}
#feedback .review-card.dark-card {
  background: hsl(169, 55%, 7%);
  color: #f8f9fa;
  border: none;
}
#feedback .review-card.dark-card .review-name, #feedback .review-card.dark-card .review-location, #feedback .review-card.dark-card .review-text {
  color: #f8f9fa;
}
#feedback .review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
#feedback .review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: hsl(335, 72%, 61%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  object-fit: cover;
}
#feedback .review-name {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  margin: 0;
  font-size: 1.02rem;
  color: hsl(169, 55%, 7%);
}
#feedback .review-location {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}
#feedback .review-stars {
  color: hsl(335, 72%, 61%);
  font-size: 0.95rem;
  letter-spacing: 2px;
}
#feedback .review-card.accent-card .review-stars, #feedback .review-card.dark-card .review-stars {
  color: #ffd166;
}
#feedback .review-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}
#feedback .review-tag {
  display: inline-block;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(35, 122, 87, 0.1);
  color: hsl(155, 62%, 28%);
  padding: 4px 10px;
  border-radius: 12px;
  width: fit-content;
}
#feedback .review-card.accent-card .review-tag, #feedback .review-card.dark-card .review-tag {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
#feedback .feedback-stats {
  background: hsl(169, 55%, 7%);
  border-radius: 20px;
  padding: 32px 24px;
  color: #f8f9fa;
}
#feedback .feedback-stats .stat-num {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
}
#feedback .feedback-stats .stat-label {
  font-size: 0.85rem;
  color: #cfd8d4;
}
@media (max-width: 767px) {
  #feedback { padding: 64px 0; }
}

#questions {
  padding: 96px 0;
  background: #f8f9fa;
  font-family: 'Playfair Display', serif;
  color: #222;
}
#questions h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(169, 55%, 7%);
  font-weight: 700;
}
#questions .lead-text {
  color: #333;
  max-width: 700px;
}
#questions .faq-accordion .accordion-item {
  border: 1px solid #e2e2e2;
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 16px;
}
#questions .faq-accordion .accordion-button {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  color: hsl(169, 55%, 7%);
  background: #fff;
  padding: 18px 20px;
}
#questions .faq-accordion .accordion-button:not(.collapsed) {
  background: hsl(155, 62%, 28%);
  color: #fff;
  box-shadow: none;
}
#questions .faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
#questions .faq-accordion .accordion-button::after {
  filter: none;
}
#questions .faq-accordion .accordion-body {
  font-family: 'Playfair Display', serif;
  color: #333;
  background: #fff;
  font-size: 1.02rem;
  line-height: 1.6;
  padding: 20px;
}
#questions .faq-contact-note {
  border-radius: 20px;
  background: hsl(169, 55%, 7%);
  color: #f8f9fa;
  padding: 32px;
}
#questions .faq-contact-note a {
  color: hsl(335, 72%, 61%);
  text-decoration: none;
  font-weight: 600;
}
#questions .faq-contact-note a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  #questions { padding: 64px 0; }
  #questions .faq-accordion .accordion-button { font-size: 0.95rem; }
}

#promo {
  font-family: 'Playfair Display', serif;
  background-color: #f8f9fa;
  padding: 96px 0;
  color: #222;
}
#promo h2, #promo h3 {
  font-family: 'Ubuntu', sans-serif;
}
#promo .promo-card {
  background-color: hsl(169, 55%, 7%);
  color: #f8f9fa;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid hsl(155, 62%, 28%);
}
#promo .promo-card h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}
#promo .promo-card p {
  color: #e6e6e6;
  font-size: 1.05rem;
  line-height: 1.7;
}
#promo .date-box {
  background-color: hsl(155, 62%, 28%);
  color: #ffffff;
  border-radius: 16px;
  padding: 24px 32px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}
#promo .date-box .label {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
  color: #eafff2;
}
#promo .date-box .date-value {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
}
#promo .date-box i {
  font-size: 2rem;
  color: #ffffff;
}
#promo ul.benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
#promo ul.benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #f0f0f0;
  font-size: 1rem;
}
#promo ul.benefits li i {
  color: hsl(335, 72%, 61%);
  font-size: 1.2rem;
  margin-top: 3px;
}
#promo .btn-cta {
  background-color: hsl(335, 72%, 61%);
  color: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 14px 36px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-block;
  text-decoration: none;
  margin-top: 12px;
  transition: opacity 0.2s ease;
}
#promo .btn-cta:hover {
  opacity: 0.88;
  color: #ffffff;
}
@media (max-width: 576px) {
  #promo .promo-card {
    padding: 28px;
  }
  #promo .date-box {
    flex-direction: row;
    padding: 18px 20px;
  }
  #promo .date-box .date-value {
    font-size: 1.3rem;
  }
}

#contacts .contacts-section {
  background: #f8f9fa;
  padding: 96px 0;
  font-family: 'Playfair Display', serif;
  color: #222;
}
#contacts .contacts-section h2, #contacts .contacts-section h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(169, 55%, 7%);
}
#contacts .contacts-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  height: 100%;
}
#contacts .contacts-form-control {
  border-radius: 16px;
  border: 1px solid #ccc;
  padding: 12px 16px;
  font-family: 'Playfair Display', serif;
  width: 100%;
  margin-bottom: 16px;
  font-size: 1rem;
}
#contacts .contacts-form-control:focus {
  outline: none;
  border-color: hsl(155, 62%, 28%);
  box-shadow: 0 0 0 3px hsla(155, 62%, 28%, 0.15);
}
#contacts .contacts-label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
  display: block;
  color: #222;
}
#contacts .btn-submit {
  background: hsl(155, 62%, 28%);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 14px 32px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
}
#contacts .btn-submit:hover {
  background: hsl(335, 72%, 61%);
  color: #fff;
}
#contacts .info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
#contacts .info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: hsl(155, 62%, 28%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
#contacts .info-text {
  color: #222;
}
#contacts .info-text a {
  color: hsl(155, 62%, 28%);
  text-decoration: none;
  font-weight: 600;
}
#contacts .info-text a:hover {
  color: hsl(335, 72%, 61%);
}
#contacts .hours-table {
  width: 100%;
  font-size: 0.95rem;
  color: #222;
}
#contacts .hours-table td {
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}
#contacts .map-link {
  display: inline-block;
  margin-top: 6px;
  color: hsl(335, 72%, 61%);
  font-weight: 600;
  text-decoration: none;
}
#contacts .map-link:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  #contacts .contacts-section { padding: 60px 0; }
  #contacts .contacts-card { padding: 28px; }
}

#legal {
  padding: 96px 0;
  background: #f8f9fa;
}
#legal .disclaimer-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  border: 1px solid #e0e0e0;
}
#legal .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: hsl(155, 62%, 28%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#legal .icon-wrap i {
  color: #fff;
  font-size: 1.6rem;
}
#legal h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(169, 55%, 7%);
  font-weight: 700;
  margin-bottom: 0;
}
#legal p {
  font-family: 'Playfair Display', serif;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  #legal .disclaimer-card {
    padding: 32px 24px;
  }
}





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

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

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

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

.thankyou-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), hsl(155, 62%, 38%));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.75rem 1.75rem rgba(21, 87, 60, 0.35);
  animation: pop-in 0.5s ease-out;
}

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

.thankyou-icon-wrapper svg {
  width: 52px;
  height: 52px;
  stroke: #ffffff;
}

.thankyou-heading {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: var(--clr-secondary);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}

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

.thankyou-text {
  color: hsl(169, 20%, 25%);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

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

.info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.75rem 0;
}

.info-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(155, 62%, 96%);
  color: var(--clr-primary);
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

.info-pill svg {
  width: 18px;
  height: 18px;
  stroke: var(--clr-primary);
  flex-shrink: 0;
}

.btn-home {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  background: var(--clr-primary);
  border: none;
  color: #ffffff;
  padding: 0.75rem 2.25rem;
  border-radius: 50px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 0.5rem 1.25rem rgba(21, 87, 60, 0.3);
}

.btn-home:hover {
  background: var(--clr-secondary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 0.75rem 1.5rem rgba(21, 87, 60, 0.4);
}

.btn-home svg {
  width: 18px;
  height: 18px;
  margin-right: 0.4rem;
  vertical-align: -3px;
}

@media (max-width: 576px) {
  .thankyou-card {
    padding: 2.25rem 1.25rem;
    border-radius: 1rem;
  }
  .info-pills {
    flex-direction: column;
    align-items: stretch;
  }
}

#contact-body {
  background: #f8f9fa;
  color: #222;
  font-family: 'Playfair Display', serif;
  padding: 80px 0;
}
#contact-body h1, #contact-body h2, #contact-body h3 {
  font-family: 'Ubuntu', sans-serif;
}
#contact-body .intro-text {
  max-width: 700px;
}
#contact-body .card {
  border-radius: 20px;
  border: none;
}
#contact-body .form-card {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding: 40px;
}
#contact-body .info-card {
  background: hsl(169, 55%, 7%);
  color: #f8f9fa;
  padding: 40px;
}
#contact-body .info-card a {
  color: #f8f9fa;
  text-decoration: underline;
}
#contact-body .info-card a:hover {
  color: hsl(335, 72%, 61%);
}
#contact-body .form-control {
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid #ccc;
  font-family: 'Playfair Display', serif;
}
#contact-body .form-control:focus {
  border-color: hsl(155, 62%, 28%);
  box-shadow: 0 0 0 0.2rem hsla(155, 62%, 28%, 0.2);
}
#contact-body label {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  margin-bottom: 4px;
}
#contact-body .btn-primary {
  background-color: hsl(155, 62%, 28%);
  border-color: hsl(155, 62%, 28%);
  border-radius: 14px;
  padding: 12px 32px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
}
#contact-body .btn-primary:hover {
  background-color: hsl(335, 72%, 61%);
  border-color: hsl(335, 72%, 61%);
}
#contact-body .info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
#contact-body .info-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 4px;
  color: hsl(335, 72%, 61%);
}
#contact-body .hours-table td {
  padding: 4px 0;
  border: none;
  font-size: 0.95rem;
}
#contact-body .hours-table {
  margin-bottom: 0;
}
#contact-body .map-link {
  font-size: 0.95rem;
}
#contact-body .badge-fact {
  background: hsl(155, 62%, 28%);
  color: #fff;
  border-radius: 12px;
  padding: 8px 16px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  #contact-body {
    padding: 56px 0;
  }
  #contact-body .form-card, #contact-body .info-card {
    padding: 28px;
  }
}
