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

:root {
  --primary: hsl(174, 30%, 38%);
  --secondary: hsl(324, 20%, 24%);
  --accent: hsl(24, 38%, 57%);
}

body{
  font-family:'Open Sans', sans-serif;
  color:#222;
  background:#fff;
}
h1,h2,h3,h4,h5,h6{
  font-family:'Roboto', sans-serif;
}
.navbar{
  background:#fff;
  border-bottom:1px solid #eee;
}
.navbar-brand{
  font-family:'Roboto', sans-serif;
  font-weight:700;
  color:var(--secondary);
  font-size:1.3rem;
  display:flex;
  align-items:center;
  gap:10px;
}
.navbar-brand:hover{
  color:var(--primary);
}
.nav-link{
  color:var(--secondary);
  font-weight:600;
}
.nav-link:hover, .nav-link:focus{
  color:var(--primary);
}
.navbar-toggler{
  border-color:var(--primary);
}

footer {
    background: hsl(324, 20%, 24%);
    color: #f5f5f5;
    font-family: 'Open Sans', sans-serif;
    padding: 48px 0 20px;
  }
  footer h5, footer h6 {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    margin-bottom: 16px;
  }
  footer p, footer li, footer a {
    color: #f0e8e6;
    font-size: 0.95rem;
  }
  footer a {
    text-decoration: none;
  }
  footer a:hover {
    color: hsl(24, 38%, 57%);
    text-decoration: underline;
  }
  footer ul {
    list-style: none;
    padding-left: 0;
  }
  footer ul li {
    margin-bottom: 8px;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: hsl(174, 30%, 38%);
    color: #fff;
    margin-right: 10px;
    font-size: 1.1rem;
    transition: background 0.2s ease;
  }
  .footer-social a:hover {
    background: hsl(24, 38%, 57%);
    color: #fff;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 30px;
    padding-top: 16px;
    font-size: 0.85rem;
    color: #d8cfcd;
  }

  #consentBox {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    color: #222;
    border-top: 3px solid hsl(174, 30%, 38%);
    z-index: 2000;
    padding: 16px 0;
    max-height: 60vh;
    overflow-y: auto;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
  }
  #consentBox h6 {
    font-family: 'Roboto', sans-serif;
    color: hsl(324, 20%, 24%);
    font-size: 1rem;
    margin-bottom: 8px;
  }
  #consentBox p, #consentBox li {
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 6px;
  }
  #consentBox ul {
    padding-left: 18px;
    margin-bottom: 10px;
  }
  .cookie-btn {
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    padding: 10px 16px;
    font-weight: 600;
    border: none;
    transition: opacity 0.2s ease;
    width: 100%;
  }
  .btn-accept-all {
    background: hsl(174, 30%, 38%);
    color: #fff;
  }
  .btn-accept-all:hover {
    opacity: 0.85;
    color: #fff;
  }
  .btn-reject {
    background: hsl(324, 20%, 24%);
    color: #fff;
  }
  .btn-reject:hover {
    opacity: 0.85;
    color: #fff;
  }
  .btn-manage {
    background: transparent;
    color: hsl(24, 38%, 57%);
    text-decoration: underline;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 8px;
  }
  .btn-manage:hover {
    color: hsl(174, 30%, 38%);
  }



.hero-section {
  background-color: #f8f9fa;
  padding: 48px 0;
  font-family: 'Open Sans', sans-serif;
  color: #222;
}

.hero-section h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: hsl(324, 20%, 24%);
  font-size: 2rem;
}

.hero-section h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: hsl(174, 30%, 38%);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.hero-section p.description {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.hero-info-block {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.hero-info-block p {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: #333;
}

.hero-info-block i {
  color: hsl(174, 30%, 38%);
  margin-right: 8px;
}

.hero-key-points {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.hero-key-points li {
  margin-bottom: 10px;
  font-size: 0.98rem;
  color: #333;
}

.hero-key-points i {
  color: hsl(24, 38%, 57%);
  margin-right: 10px;
  font-size: 1.1rem;
}

.btn-hero-primary {
  background-color: hsl(174, 30%, 38%);
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: 12px 28px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-hero-primary:hover {
  background-color: hsl(174, 30%, 30%);
  color: #fff;
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background-color: transparent;
  border: 2px solid hsl(24, 38%, 57%);
  color: hsl(24, 38%, 57%);
  border-radius: 8px;
  padding: 10px 26px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-hero-secondary:hover {
  background-color: hsl(24, 38%, 57%);
  color: #fff;
  transform: translateY(-2px);
}

.hero-image-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 1.6rem;
  }
  .hero-image-wrap {
    margin-top: 24px;
  }
}

#about-us {
  font-family: 'Open Sans', sans-serif;
  color: #222;
  background-color: #fff;
  padding: 50px 0;
}
#about-us h2, #about-us h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(174, 30%, 38%);
}
#about-us .lead-text {
  font-size: 1.05rem;
  line-height: 1.7;
}
#about-us .about-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
#about-us .values-list {
  list-style: none;
  padding-left: 0;
}
#about-us .values-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid #e9e9e9;
}
#about-us .values-list li:last-child {
  border-bottom: none;
}
#about-us .values-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: hsl(24, 38%, 57%);
  font-weight: bold;
}
#about-us .stat-box {
  background-color: hsl(174, 30%, 38%);
  color: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
#about-us .stat-box .stat-number {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  color: #fff;
}
#about-us .stat-box .stat-label {
  font-size: 0.9rem;
  color: #f0f0f0;
}

.services-section {
  padding: 52px 0;
  background: #f8f9fa;
  font-family: 'Open Sans', sans-serif;
}
.services-section h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(324, 20%, 24%);
  font-weight: 700;
}
.services-section .lead-text {
  color: #333;
  max-width: 700px;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 16px;
  border-bottom: 1px solid #dcdcdc;
  border-radius: 8px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.service-item:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.service-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 8px;
  background: hsl(174, 30%, 38%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.service-content h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  color: hsl(324, 20%, 24%);
  font-weight: 700;
  margin-bottom: 6px;
}
.service-content p {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.service-price {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  background: hsl(24, 38%, 57%);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
}
.col-divider {
  border-left: 1px solid #dcdcdc;
}
@media (max-width: 767px) {
  .col-divider {
    border-left: none;
    border-top: 1px solid #dcdcdc;
    margin-top: 10px;
    padding-top: 10px;
  }
}

#value{
  padding:52px 0;
  background:#f8f9fa;
  font-family:'Open Sans',sans-serif;
}
#value h2{
  font-family:'Roboto',sans-serif;
  color:#222;
  font-weight:700;
}
#value .lead-text{
  color:#333;
  max-width:700px;
}
#value .adv-card{
  background:#fff;
  border:1px solid #e5e5e5;
  border-radius:8px;
  padding:28px 22px;
  height:100%;
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#value .adv-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 22px rgba(0,0,0,0.12);
  border-color:hsl(174, 30%, 38%);
}
#value .icon-wrap{
  width:56px;
  height:56px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:hsl(174, 30%, 38%);
  color:#fff;
  font-size:1.5rem;
  margin-bottom:16px;
}
#value .adv-card:nth-child(3n+2) .icon-wrap{
  background:hsl(24, 38%, 57%);
}
#value .adv-card:nth-child(3n) .icon-wrap{
  background:hsl(324, 20%, 24%);
}
#value .adv-card h3{
  font-family:'Roboto',sans-serif;
  font-size:1.15rem;
  color:#222;
  margin-bottom:10px;
  font-weight:600;
}
#value .adv-card p{
  color:#444;
  font-size:0.96rem;
  margin-bottom:0;
}

#help {
  background-color: #f8f9fa;
  padding: 50px 0;
  font-family: 'Open Sans', sans-serif;
  color: #222;
}
#help h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(174, 30%, 38%);
  font-weight: 700;
}
#help p.lead-text {
  color: #333;
}
#help .accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
#help .accordion-button {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: hsl(324, 20%, 24%);
  background-color: #fff;
  border-radius: 8px;
}
#help .accordion-button:not(.collapsed) {
  background-color: hsl(174, 30%, 38%);
  color: #fff;
  box-shadow: none;
}
#help .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(174, 30%, 38%);
}
#help .accordion-button::after {
  filter: none;
}
#help .accordion-body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

#promo .promo-card{background:hsl(174,30%,38%);border-radius:8px;padding:40px;color:#fff;}
#promo .promo-heading{font-family:'Roboto',sans-serif;font-weight:700;color:#fff;}
#promo p, #promo li{font-family:'Open Sans',sans-serif;}
#promo .date-box{background:hsl(324,20%,24%);border-radius:8px;padding:16px 22px;display:inline-flex;align-items:center;gap:10px;color:#fff;font-family:'Roboto',sans-serif;font-weight:700;font-size:1.3rem;}
#promo .benefit-list{list-style:none;padding-left:0;margin:0;}
#promo .benefit-list li{margin-bottom:10px;color:#fff;font-size:1rem;}
#promo .benefit-list i{color:hsl(24,38%,57%);margin-right:8px;}
#promo .btn-promo{background:hsl(24,38%,57%);border:none;color:#fff;font-family:'Roboto',sans-serif;font-weight:700;border-radius:8px;padding:12px 28px;}
#promo .btn-promo:hover{background:#fff;color:hsl(174,30%,38%);}
@media(max-width:767px){#promo .promo-card{padding:26px;}}

#enquiry {
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f9fa;
  color: #222;
  padding: 50px 0;
}
#enquiry h2, #enquiry h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(174, 30%, 38%);
}
#enquiry .contact-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
#enquiry .form-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
#enquiry .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
}
#enquiry .form-control:focus {
  border-color: hsl(174, 30%, 38%);
  box-shadow: 0 0 0 0.2rem hsla(174, 30%, 38%, 0.2);
}
#enquiry .btn-submit {
  background-color: hsl(174, 30%, 38%);
  color: #fff;
  border-radius: 6px;
  border: none;
  padding: 10px 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}
#enquiry .btn-submit:hover {
  background-color: hsl(174, 30%, 30%);
  color: #fff;
}
#enquiry .info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
#enquiry .info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 6px;
  background-color: hsl(24, 38%, 57%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
#enquiry a {
  color: hsl(174, 30%, 38%);
  text-decoration: none;
}
#enquiry a:hover {
  text-decoration: underline;
}
#enquiry .map-link {
  color: hsl(324, 20%, 24%);
  font-weight: 600;
}
#enquiry .badge-hours {
  background-color: hsl(324, 20%, 24%);
  color: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.9rem;
}

#legal-notice {
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f9fa;
  padding: 48px 0;
  border-top: 1px solid #e0e0e0;
}
#legal-notice h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(324, 20%, 24%);
  font-weight: 700;
}
#legal-notice .icon-wrap {
  color: hsl(174, 30%, 38%);
  font-size: 2rem;
  flex-shrink: 0;
}
#legal-notice .notice-box {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 24px;
}
#legal-notice p {
  color: #333333;
  line-height: 1.6;
  margin-bottom: 0;
}

#contact-content {
  font-family: 'Open Sans', sans-serif;
  color: #222;
  background-color: #f8f9fa;
  padding: 50px 0;
}
#contact-content h1, #contact-content h2, #contact-content h3 {
  font-family: 'Roboto', sans-serif;
}
#contact-content .intro-heading {
  color: hsl(174, 30%, 38%);
}
#contact-content .form-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
#contact-content .form-label {
  font-weight: 600;
  color: #222;
}
#contact-content .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
}
#contact-content .form-control:focus {
  border-color: hsl(174, 30%, 38%);
  box-shadow: 0 0 0 0.2rem hsla(174, 30%, 38%, 0.25);
}
#contact-content .btn-primary-custom {
  background-color: hsl(174, 30%, 38%);
  border-color: hsl(174, 30%, 38%);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  padding: 10px 28px;
}
#contact-content .btn-primary-custom:hover {
  background-color: hsl(174, 30%, 30%);
  border-color: hsl(174, 30%, 30%);
  color: #fff;
}
#contact-content .info-card {
  background-color: hsl(324, 20%, 24%);
  color: #f8f9fa;
  border-radius: 8px;
  padding: 30px;
  height: 100%;
}
#contact-content .info-card h3 {
  color: #fff;
}
#contact-content .info-card a {
  color: hsl(24, 38%, 70%);
  text-decoration: none;
}
#contact-content .info-card a:hover {
  color: #fff;
  text-decoration: underline;
}
#contact-content .info-item {
  margin-bottom: 18px;
}
#contact-content .info-item strong {
  display: block;
  margin-bottom: 4px;
  color: hsl(24, 38%, 70%);
}
#contact-content .find-us-box {
  background-color: hsl(174, 30%, 38%);
  color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}
#contact-content .find-us-box a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
#contact-content .badge-hours {
  background-color: hsl(24, 38%, 57%);
  color: #fff;
  border-radius: 6px;
  padding: 6px 14px;
  display: inline-block;
  font-size: 0.9rem;
  margin-top: 10px;
}
#contact-content .cta-banner {
  background-color: #fff;
  border: 2px solid hsl(174, 30%, 38%);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  margin-top: 48px;
}
#contact-content .cta-banner a {
  background-color: hsl(174, 30%, 38%);
  color: #fff;
  padding: 10px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
}
#contact-content .cta-banner a:hover {
  background-color: hsl(174, 30%, 30%);
}
@media (max-width: 767px) {
  #contact-content .form-card, #contact-content .info-card {
    padding: 20px;
  }
}

#about-main {
  font-family: 'Open Sans', sans-serif;
  color: #222;
  background: #fff;
  padding: 50px 0;
}
#about-main h1, #about-main h2, #about-main h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(324, 20%, 24%);
}
#about-main .intro-block {
  margin-bottom: 48px;
}
#about-main .img-wrap {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
}
#about-main .img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
}
#about-main .value-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  border-left: 4px solid hsl(174, 30%, 38%);
}
#about-main .value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
#about-main .details-table th,
#about-main .details-table td {
  padding: 12px 14px;
  border: 1px solid #dee2e6;
}
#about-main .details-table th {
  background: hsl(174, 30%, 38%);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  width: 45%;
}
#about-main .cta-box {
  background: hsl(324, 20%, 24%);
  color: #fff;
  border-radius: 8px;
  padding: 40px;
  margin-top: 48px;
  text-align: center;
}
#about-main .cta-box h2 {
  color: #fff;
}
#about-main .cta-box p {
  color: #f1f1f1;
}
#about-main .btn-accent {
  background: hsl(24, 38%, 57%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
#about-main .btn-accent:hover {
  background: hsl(24, 38%, 47%);
  color: #fff;
}
#about-main section + section {
  margin-top: 48px;
}

#services-section {
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f9fa;
  color: #222;
  padding: 52px 0;
}
#services-section h1, #services-section h2, #services-section h3 {
  font-family: 'Roboto', sans-serif;
}
#services-section .page-intro {
  max-width: 800px;
  margin: 0 auto 40px;
}
#services-section .service-item {
  padding: 24px 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  height: 100%;
}
#services-section .service-item:hover {
  background-color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
#services-section .service-icon {
  font-size: 2.2rem;
  color: hsl(174, 30%, 38%);
  margin-bottom: 12px;
}
#services-section .service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: hsl(324, 20%, 24%);
  margin-bottom: 8px;
}
#services-section .service-price {
  display: inline-block;
  background-color: hsl(24, 38%, 57%);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 700;
  margin-top: 10px;
}
#services-section .col-list {
  border-bottom: 1px solid #ddd;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
#services-section .col-list:last-child {
  border-bottom: none;
}
#services-section .vertical-separator {
  border-left: 1px solid #ddd;
}
@media (max-width: 767px) {
  #services-section .vertical-separator {
    border-left: none;
  }
}
#services-section .details-table th {
  background-color: hsl(174, 30%, 38%);
  color: #fff;
  font-weight: 600;
}
#services-section .details-table td, #services-section .details-table th {
  padding: 10px 12px;
  vertical-align: middle;
}
#services-section .cta-box {
  background-color: hsl(324, 20%, 24%);
  color: #fff;
  border-radius: 8px;
  padding: 36px 24px;
  text-align: center;
  margin-top: 48px;
}
#services-section .cta-box h2 {
  color: #fff;
}
#services-section .cta-box p {
  color: #f1f1f1;
}
#services-section .btn-cta {
  background-color: hsl(24, 38%, 57%);
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
#services-section .btn-cta:hover {
  background-color: hsl(24, 38%, 47%);
  color: #fff;
}

.thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, hsl(174, 30%, 96%) 0%, hsl(324, 20%, 97%) 100%);
    font-family: 'Open Sans', sans-serif;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 3rem 2rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  }

  .thankyou-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: hsl(174, 30%, 38%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px hsl(174, 30%, 90%);
    animation: pop-in 0.5s ease-out;
  }

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

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

  .thankyou-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: hsl(324, 20%, 24%);
    font-size: 2rem;
    margin-bottom: 1rem;
  }

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

  .thankyou-note {
    background: hsl(24, 38%, 96%);
    border-left: 4px solid hsl(24, 38%, 57%);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    text-align: left;
    color: hsl(324, 20%, 24%);
    font-size: 0.95rem;
    margin: 1.5rem 0 2rem;
  }

  .thankyou-note i {
    color: hsl(24, 38%, 57%);
    margin-right: 0.5rem;
  }

  .btn-home {
    background-color: hsl(174, 30%, 38%);
    border: none;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2.25rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.25s ease;
  }

  .btn-home:hover,
  .btn-home:focus {
    background-color: hsl(174, 30%, 30%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }

  @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: 40px;
      height: 40px;
    }
  }
