:root {
  --primary: hsl(180, 30%, 35%);
  --secondary: hsl(330, 22%, 21%);
  --accent: hsl(30, 53%, 53%);
  --color-primary: hsl(180, 30%, 35%);
  --color-secondary: hsl(330, 22%, 21%);
  --color-accent: hsl(30, 53%, 53%);
}

body {
  font-family: 'Nunito', sans-serif;
  color: #222;
  background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}
.navbar {
  background-color: #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}
.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.navbar-brand img {
  border-radius: 12px;
}
.navbar-nav .nav-link {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  color: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  transition: color 0.2s, background-color 0.2s;
}
.navbar-nav .nav-link:hover {
  color: #fff;
  background-color: var(--primary);
}
.navbar-toggler {
  border-radius: 12px;
  border-color: var(--primary);
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem hsla(180, 30%, 35%, 0.25);
}

#about-main {
  font-family: 'Nunito', sans-serif;
  color: #222;
  background: #ffffff;
  padding: 56px 0;
}
#about-main h1, #about-main h2, #about-main h3 {
  font-family: 'Poppins', sans-serif;
}
#about-main .hero-about {
  background: hsl(180, 30%, 35%);
  color: #ffffff;
  border-radius: 20px;
  padding: 48px 32px;
  margin-bottom: 48px;
}
#about-main .hero-about h1 {
  color: #ffffff;
  font-weight: 700;
}
#about-main .hero-about p {
  color: #f0f0f0;
  font-size: 1.1rem;
  max-width: 700px;
}
#about-main .section-block {
  margin-bottom: 48px;
}
#about-main h2 {
  color: hsl(330, 22%, 21%);
  font-weight: 700;
  margin-bottom: 20px;
}
#about-main p {
  line-height: 1.7;
  font-size: 1.02rem;
}
#about-main .img-frame {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
#about-main .values-card {
  background: #f8f9fa;
  border-radius: 18px;
  padding: 24px;
  height: 100%;
  border-left: 5px solid hsl(30, 53%, 53%);
}
#about-main .values-card h3 {
  color: hsl(180, 30%, 35%);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
#about-main .facts-table {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
#about-main .facts-table th {
  background: hsl(180, 30%, 35%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  width: 45%;
}
#about-main .facts-table td, #about-main .facts-table th {
  padding: 14px 18px;
  vertical-align: middle;
}
#about-main .facts-table tr {
  background: #ffffff;
}
#about-main .facts-table tr:nth-child(even) {
  background: #f8f9fa;
}
#about-main .team-card {
  background: hsl(330, 22%, 21%);
  color: #ffffff;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
}
#about-main .team-card h3 {
  color: hsl(30, 53%, 53%);
  font-weight: 700;
  margin-bottom: 4px;
}
#about-main .team-card .role {
  color: #f0e6dd;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
#about-main .team-card p {
  color: #f5f0ec;
  margin-bottom: 0;
}
#about-main .cta-box {
  background: hsl(30, 53%, 53%);
  color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}
#about-main .cta-box h2 {
  color: #ffffff;
}
#about-main .cta-box p {
  color: #fbeee0;
}
#about-main .btn-cta {
  background: hsl(180, 30%, 35%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 12px 32px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}
#about-main .btn-cta:hover {
  background: hsl(180, 30%, 25%);
  color: #ffffff;
}
@media (max-width: 767px) {
  #about-main .hero-about {
    padding: 32px 20px;
  }
}

footer{background:hsl(330,22%,21%);color:#f5f5f5;font-family:'Nunito',sans-serif;border-radius:24px 24px 0 0;padding:48px 0 24px;}
footer h5,footer h6{font-family:'Poppins',sans-serif;color:#fff;}
footer a{color:#f5f5f5;text-decoration:none;}
footer a:hover{color:hsl(30,53%,53%);}
.footer-desc{color:#e6e0e0;font-size:0.95rem;line-height:1.6;}
.footer-social a{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;background:hsl(180,30%,35%);color:#fff;margin-right:8px;transition:background 0.2s ease,transform 0.2s ease;}
.footer-social a:hover{background:hsl(30,53%,53%);color:#fff;transform:translateY(-3px);}
.footer-links li{margin-bottom:8px;}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.15);margin-top:24px;padding-top:16px;font-size:0.85rem;color:#d9d3d3;}

#cookieBar{position:fixed;bottom:0;left:0;right:0;z-index:1050;background:hsl(180,30%,35%);color:#fff;border-radius:20px 20px 0 0;box-shadow:0 -4px 20px rgba(0,0,0,0.2);padding:16px;max-height:60vh;overflow-y:auto;font-family:'Nunito',sans-serif;}
#cookieBar h5{font-family:'Poppins',sans-serif;color:#fff;font-size:1.1rem;margin-bottom:6px;}
#cookieBar p, #cookieBar li{color:#f0f0f0;font-size:0.85rem;margin-bottom:6px;}
#cookieBar ul{padding-left:18px;margin-bottom:10px;}
.cookie-btn{border-radius:14px;font-weight:600;padding:8px 18px;font-size:0.9rem;border:none;transition:transform 0.2s ease,opacity 0.2s ease;flex:1;}
.cookie-btn:hover{transform:translateY(-2px);opacity:0.92;}
.btn-accept-all{background:hsl(30,53%,53%);color:#fff;}
.btn-reject-optional{background:hsl(330,22%,21%);color:#fff;}
.btn-manage{color:#fff;text-decoration:underline;font-size:0.85rem;}

.hero-food-section {
  background: #f8f9fa;
  padding: 48px 0 52px;
  font-family: 'Nunito', sans-serif;
}
.hero-food-section h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: hsl(330, 22%, 21%);
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}
.hero-food-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: hsl(180, 30%, 35%);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.hero-food-section .hero-desc {
  color: #333;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 1.75rem;
}
.hero-food-section .hero-cta {
  background-color: hsl(30, 53%, 53%);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.75rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background-color 0.25s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.hero-food-section .hero-cta:hover {
  background-color: hsl(180, 30%, 35%);
  color: #fff;
  transform: translateY(-2px);
}
.hero-food-section .hero-image-strip {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 1.5rem;
}
.hero-food-section .hero-image-strip img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .hero-food-section .hero-image-strip img {
    aspect-ratio: 21 / 9;
  }
}

.services-section {
  background: #f8f9fa;
  padding: 52px 0;
  font-family: 'Nunito', sans-serif;
}

.services-section h2 {
  font-family: 'Poppins', sans-serif;
  color: hsl(330, 22%, 21%);
  font-weight: 700;
}

.services-section .lead-text {
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: hsl(180, 30%, 35%);
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: hsl(180, 30%, 35%);
  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(30, 53%, 53%);
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  color: hsl(330, 22%, 21%);
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 16px;
}

.service-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: hsl(180, 30%, 35%);
  font-size: 1.25rem;
  border-top: 1px solid #eee;
  padding-top: 14px;
}

.service-price span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: #888;
  margin-top: 2px;
}

#gallery {
  padding: 56px 0;
  background: #f8f9fa;
  font-family: 'Nunito', sans-serif;
  color: #222;
}
#gallery h2, #gallery .modal-title {
  font-family: 'Poppins', sans-serif;
}
#gallery .section-heading {
  color: hsl(180, 30%, 35%);
  font-weight: 700;
}
#gallery .section-sub {
  color: #444;
  max-width: 700px;
}
#gallery .portfolio-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e5e5;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#gallery .portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}
#gallery .portfolio-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}
#gallery .portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#gallery .portfolio-body {
  padding: 18px 20px 20px;
}
#gallery .badge-category {
  background: hsl(30, 53%, 53%);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 5px 12px;
  font-size: 0.78rem;
  display: inline-block;
  margin-bottom: 10px;
}
#gallery .portfolio-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(330, 22%, 21%);
  margin-bottom: 8px;
}
#gallery .portfolio-body p {
  font-size: 0.92rem;
  color: #444;
  margin-bottom: 14px;
}
#gallery .btn-details {
  background: hsl(180, 30%, 35%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 0.9rem;
}
#gallery .btn-details:hover {
  background: hsl(180, 30%, 28%);
  color: #fff;
}
#gallery .modal-content {
  border-radius: 20px;
  border: none;
}
#gallery .modal-header {
  border-bottom: none;
  background: hsl(180, 30%, 35%);
  color: #fff;
  border-radius: 20px 20px 0 0;
}
#gallery .modal-header .btn-close {
  filter: brightness(0) invert(1);
}
#gallery .modal-body img {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 16px;
}
#gallery .modal-body .badge-category {
  margin-bottom: 12px;
}

#advantages {
  font-family: 'Nunito', sans-serif;
  background-color: #f8f9fa;
  padding: 52px 0;
}
#advantages h2 {
  font-family: 'Poppins', sans-serif;
  color: hsl(330, 22%, 21%);
  font-weight: 700;
}
#advantages .section-sub {
  color: #444;
  max-width: 650px;
  margin: 0 auto;
}
#advantages .adv-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
#advantages .adv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  background-color: hsl(180, 30%, 35%);
}
#advantages .adv-card:hover h3,
#advantages .adv-card:hover p {
  color: #fff;
}
#advantages .adv-card:hover .icon-wrap {
  background-color: hsl(30, 53%, 53%);
  color: #fff;
}
#advantages .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: hsl(180, 30%, 92%);
  color: hsl(180, 30%, 35%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#advantages h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: hsl(330, 22%, 21%);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
#advantages p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

#feedback {
  background: #f8f9fa;
  padding: 56px 0;
  font-family: 'Nunito', sans-serif;
}
#feedback h2 {
  font-family: 'Poppins', sans-serif;
  color: hsl(330, 22%, 21%);
  font-weight: 700;
}
#feedback .lead-text {
  color: #444;
  max-width: 640px;
}
#feedback .review-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 3px 14px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
#feedback .review-card .stars {
  color: hsl(30, 53%, 53%);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
#feedback .review-card .star-empty {
  color: #ddd;
}
#feedback .review-text {
  color: #2b2b2b;
  font-size: 0.98rem;
  line-height: 1.55;
  flex-grow: 1;
}
#feedback .review-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
#feedback .avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: hsl(180, 30%, 35%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
}
#feedback .reviewer-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: hsl(330, 22%, 21%);
  font-size: 0.95rem;
  margin-bottom: 0;
}
#feedback .reviewer-loc {
  color: #777;
  font-size: 0.82rem;
}
#feedback .card-tall {
  min-height: 100%;
}
#feedback .badge-aspect {
  border-radius: 14px;
  background: hsl(180, 30%, 90%);
  color: hsl(180, 30%, 25%);
  font-size: 0.75rem;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 600;
}
#feedback .summary-strip {
  background: hsl(180, 30%, 35%);
  color: #fff;
  border-radius: 20px;
  padding: 22px 28px;
  margin-top: 44px;
}
#feedback .summary-strip .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
}
#feedback .summary-strip .lbl {
  font-size: 0.85rem;
  color: #e6f0ef;
}
@media (max-width: 767px) {
  #feedback .review-card { padding: 22px 18px; }
}

#faq {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Nunito', sans-serif;
  color: #222;
}
#faq h2 {
  font-family: 'Poppins', sans-serif;
  color: hsl(330, 22%, 21%);
  font-weight: 700;
}
#faq p.lead-text {
  color: #444;
  max-width: 700px;
}
#faq .faq-accordion .accordion-item {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
#faq .faq-accordion .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: hsl(330, 22%, 21%);
  background-color: #fff;
  padding: 20px 24px;
  font-size: 1.05rem;
}
#faq .faq-accordion .accordion-button:not(.collapsed) {
  background-color: hsl(180, 30%, 35%);
  color: #fff;
  box-shadow: none;
}
#faq .faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
#faq .faq-accordion .accordion-button::after {
  filter: none;
}
#faq .faq-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(1) brightness(2);
}
#faq .faq-accordion .accordion-body {
  background-color: #fff;
  color: #333;
  padding: 20px 24px 24px;
  line-height: 1.65;
  font-size: 0.98rem;
}
#faq .faq-accordion .accordion-item:nth-child(even) .accordion-button:not(.collapsed) {
  background-color: hsl(30, 53%, 53%);
  color: #fff;
}

#get-in-touch {
  background: #f8f9fa;
  padding: 52px 0;
  font-family: 'Nunito', sans-serif;
}
#get-in-touch h2 {
  font-family: 'Poppins', sans-serif;
  color: hsl(330, 22%, 21%);
  font-weight: 700;
}
#get-in-touch p.section-lead {
  color: #444;
  max-width: 600px;
}
#get-in-touch .contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  height: 100%;
}
#get-in-touch .contact-form label {
  font-weight: 600;
  color: hsl(330, 22%, 21%);
  margin-bottom: 4px;
}
#get-in-touch .contact-form .form-control {
  border-radius: 14px;
  border: 1px solid #ddd;
  padding: 10px 14px;
  font-family: 'Nunito', sans-serif;
}
#get-in-touch .contact-form .form-control:focus {
  border-color: hsl(180, 30%, 35%);
  box-shadow: 0 0 0 0.2rem hsla(180, 30%, 35%, 0.15);
}
#get-in-touch .btn-submit {
  background: hsl(30, 53%, 53%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 28px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s ease;
}
#get-in-touch .btn-submit:hover {
  background: hsl(30, 53%, 43%);
  color: #fff;
}
#get-in-touch .info-card {
  background: hsl(180, 30%, 35%);
  border-radius: 20px;
  padding: 32px;
  color: #fff;
  height: 100%;
}
#get-in-touch .info-card h3 {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
#get-in-touch .info-card p, #get-in-touch .info-card a {
  color: #f1f1f1;
}
#get-in-touch .info-card a {
  text-decoration: underline;
}
#get-in-touch .info-card a:hover {
  color: hsl(30, 53%, 53%);
}
#get-in-touch .info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
#get-in-touch .info-item .icon-circle {
  background: hsl(30, 53%, 53%);
  color: #fff;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
#get-in-touch .find-us-note {
  background: hsla(30, 53%, 53%, 0.15);
  border-radius: 14px;
  padding: 14px 18px;
  margin-top: 10px;
}
#get-in-touch .find-us-note a {
  color: #fff;
  font-weight: 700;
}
@media (max-width: 767px) {
  #get-in-touch .contact-card, #get-in-touch .info-card {
    padding: 24px;
  }
}

#legal-notice {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Nunito', sans-serif;
}
#legal-notice h2 {
  font-family: 'Poppins', sans-serif;
  color: hsl(330, 22%, 21%);
  font-weight: 600;
}
#legal-notice .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: hsl(180, 30%, 35%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#legal-notice .icon-wrap i {
  color: #ffffff;
  font-size: 1.6rem;
}
#legal-notice .notice-card {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 20px;
  padding: 32px;
}
#legal-notice p {
  color: #333333;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}



.thankyou-section {
  font-family: 'Nunito', sans-serif;
  background: linear-gradient(135deg, hsl(180, 30%, 96%) 0%, hsl(30, 53%, 96%) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 3rem 1rem;
}

.thankyou-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  padding: 3rem 2rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.thankyou-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.75rem;
  background: hsl(180, 30%, 92%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.5s ease-out;
}

.thankyou-icon-wrapper svg {
  width: 52px;
  height: 52px;
  stroke: var(--color-primary);
}

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

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

.thankyou-text {
  color: hsl(330, 15%, 35%);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

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

.thankyou-tips {
  background: hsl(30, 53%, 96%);
  border-left: 4px solid var(--color-accent);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  text-align: left;
  margin: 1.75rem 0;
  font-size: 0.95rem;
  color: var(--color-secondary);
}

.thankyou-tips ul {
  margin-bottom: 0;
  padding-left: 1.1rem;
}

.thankyou-tips li {
  margin-bottom: 0.4rem;
}

.thankyou-tips li:last-child {
  margin-bottom: 0;
}

.btn-thankyou {
  font-family: 'Poppins', sans-serif;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2.25rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-thankyou:hover,
.btn-thankyou:focus {
  background-color: hsl(180, 30%, 28%);
  border-color: hsl(180, 30%, 28%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem hsla(180, 30%, 35%, 0.3);
}

@media (max-width: 576px) {
  .thankyou-card {
    padding: 2rem 1.25rem;
  }
  .thankyou-heading {
    font-size: 1.5rem;
  }
  .thankyou-icon-wrapper {
    width: 80px;
    height: 80px;
  }
  .thankyou-icon-wrapper svg {
    width: 42px;
    height: 42px;
  }
}

#contact-body {
  font-family: 'Nunito', sans-serif;
  background: #f8f9fa;
  color: #222;
  padding: 56px 0;
}
#contact-body h1, #contact-body h2, #contact-body h3 {
  font-family: 'Poppins', sans-serif;
}
#contact-body .intro-heading {
  color: hsl(180, 30%, 35%);
  font-weight: 700;
}
#contact-body .intro-text {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #333;
}
#contact-body .card-panel {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  height: 100%;
}
#contact-body .form-control {
  border-radius: 14px;
  border: 1px solid #ccc;
  padding: 12px 16px;
  font-family: 'Nunito', sans-serif;
}
#contact-body .form-control:focus {
  border-color: hsl(180, 30%, 35%);
  box-shadow: 0 0 0 0.2rem hsla(180, 30%, 35%, 0.2);
}
#contact-body label {
  font-weight: 600;
  color: hsl(330, 22%, 21%);
  margin-bottom: 6px;
}
#contact-body .btn-submit {
  background: hsl(30, 53%, 53%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 12px 28px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s ease;
}
#contact-body .btn-submit:hover {
  background: hsl(30, 53%, 43%);
  color: #fff;
}
#contact-body .info-card {
  background: hsl(180, 30%, 35%);
  color: #fff;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
}
#contact-body .info-card h3 {
  color: #fff;
  margin-bottom: 20px;
}
#contact-body .info-card a {
  color: #fff;
  text-decoration: underline;
}
#contact-body .info-card a:hover {
  color: hsl(30, 53%, 53%);
}
#contact-body .info-item {
  margin-bottom: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
#contact-body .info-item i {
  font-size: 1.2rem;
  color: hsl(30, 53%, 53%);
  margin-top: 3px;
}
#contact-body .directions-note {
  background: #fff;
  border-left: 4px solid hsl(30, 53%, 53%);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 24px;
  color: #333;
}
#contact-body .directions-note a {
  color: hsl(180, 30%, 35%);
  font-weight: 700;
  text-decoration: underline;
}
#contact-body .cta-box {
  background: hsl(330, 22%, 21%);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-top: 48px;
  text-align: center;
}
#contact-body .cta-box h2 {
  color: #fff;
}
#contact-body .cta-box p {
  color: #f1f1f1;
}
#contact-body .cta-box .btn-submit {
  display: inline-block;
  margin-top: 12px;
}
@media (max-width: 767px) {
  #contact-body .card-panel, #contact-body .info-card {
    margin-bottom: 24px;
  }
}
