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

:root {
  --primary: hsl(278, 48%, 29%);
  --secondary: hsl(292, 38%, 13%);
  --accent: hsl(98, 74%, 37%);
  --clr-primary: hsl(278, 48%, 29%);
  --clr-secondary: hsl(292, 38%, 13%);
  --clr-accent: hsl(98, 74%, 37%);
}

body{
  font-family: 'Merriweather', serif;
  color: #222;
  background-color: #fff;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Lato', sans-serif;
}
.navbar{
  border-bottom: 1px solid #eee;
}
.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);
}
.nav-link{
  font-family: 'Lato', sans-serif;
  color: #222;
  font-weight: 600;
}
.nav-link:hover, .nav-link:focus{
  color: var(--primary);
}

.site-footer {
  background-color: hsl(292, 38%, 13%);
  color: #f5f5f5;
  font-family: 'Merriweather', serif;
  padding: 80px 0 32px;
  border-top: 4px solid hsl(98, 74%, 37%);
}
.site-footer h5 {
  font-family: 'Lato', sans-serif;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 700;
}
.site-footer p, .site-footer li, .site-footer a {
  color: #e6dbee;
}
.site-footer a {
  text-decoration: none;
}
.site-footer a:hover {
  color: hsl(98, 74%, 37%);
  text-decoration: underline;
}
.site-footer ul {
  list-style: none;
  padding-left: 0;
}
.site-footer ul li {
  margin-bottom: 10px;
}
.footer-divider {
  border-color: rgba(255,255,255,0.15);
  margin: 40px 0 24px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: hsl(278, 48%, 29%);
  color: #fff;
  margin-right: 10px;
  font-size: 1.2rem;
  border-radius: 0;
  transition: background-color 0.2s ease;
}
.social-icons a:hover {
  background-color: hsl(98, 74%, 37%);
  color: #101010;
}
.footer-bottom {
  font-size: 0.9rem;
  color: #cbbfd6;
}
#privacyBox {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background-color: hsl(292, 38%, 13%);
  border-top: 3px solid hsl(98, 74%, 37%);
  color: #f5f5f5;
  font-family: 'Merriweather', serif;
  max-height: 60vh;
  overflow-y: auto;
  padding: 18px 0;
}
#privacyBox h6 {
  font-family: 'Lato', sans-serif;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}
#privacyBox p {
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: #e6dbee;
}
#privacyBox ul {
  font-size: 0.85rem;
  padding-left: 18px;
  margin-bottom: 10px;
  color: #e6dbee;
}
.cookie-btn {
  border-radius: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 10px 18px;
  font-size: 0.9rem;
  width: 100%;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.btn-accept-all {
  background-color: hsl(98, 74%, 37%);
  color: #101010;
}
.btn-accept-all:hover {
  background-color: hsl(98, 74%, 30%);
  color: #fff;
}
.btn-reject-optional {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-reject-optional:hover {
  background-color: #fff;
  color: hsl(292, 38%, 13%);
}
.btn-manage-settings {
  color: hsl(98, 74%, 37%);
  font-size: 0.85rem;
  text-decoration: underline;
}
.btn-manage-settings:hover {
  color: #fff;
}

#contact-content {
  font-family: 'Merriweather', serif;
  color: #222;
  background: #ffffff;
  padding: 96px 0;
}
#contact-content h1,
#contact-content h2,
#contact-content h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(292, 38%, 13%);
}
#contact-content .intro-text {
  max-width: 720px;
  margin: 0 auto 48px;
  color: #333;
}
#contact-content .contact-form-wrapper {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 40px;
}
#contact-content .form-label {
  font-family: 'Lato', sans-serif;
  color: hsl(292, 38%, 13%);
  font-weight: 700;
}
#contact-content .form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  padding: 10px 14px;
}
#contact-content .form-control:focus {
  border-color: hsl(278, 48%, 29%);
  box-shadow: 0 0 0 0.2rem hsla(278, 48%, 29%, 0.2);
}
#contact-content .btn-submit {
  background-color: hsl(98, 74%, 37%);
  color: #ffffff;
  border: none;
  border-radius: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 12px 32px;
}
#contact-content .btn-submit:hover {
  background-color: hsl(98, 74%, 30%);
  color: #ffffff;
}
#contact-content .info-card {
  background: hsl(292, 38%, 13%);
  color: #f8f9fa;
  padding: 40px;
  height: 100%;
}
#contact-content .info-card h3 {
  color: #ffffff;
}
#contact-content .info-card a {
  color: hsl(98, 74%, 55%);
  text-decoration: none;
}
#contact-content .info-card a:hover {
  text-decoration: underline;
}
#contact-content .info-card p {
  color: #f0f0f0;
  margin-bottom: 6px;
}
#contact-content .info-icon-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
}
#contact-content .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contact-content .hours-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 4px 0;
  color: #f0f0f0;
  font-size: 0.95rem;
}
#contact-content .find-us-line {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.95rem;
}
#contact-content .bottom-cta {
  margin-top: 80px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  padding-top: 48px;
}
#contact-content .bottom-cta .btn-cta {
  background-color: hsl(278, 48%, 29%);
  color: #ffffff;
  border-radius: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 12px 36px;
  text-decoration: none;
  display: inline-block;
}
#contact-content .bottom-cta .btn-cta:hover {
  background-color: hsl(278, 48%, 22%);
  color: #ffffff;
}
@media (max-width: 767px) {
  #contact-content { padding: 64px 0; }
  #contact-content .contact-form-wrapper,
  #contact-content .info-card { padding: 24px; }
}

#about-body {
  font-family: 'Merriweather', serif;
  color: #262626;
  background: #ffffff;
}
#about-body h1, #about-body h2, #about-body h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(292, 38%, 13%);
}
#about-body .about-hero {
  padding: 96px 0 64px;
}
#about-body .about-section {
  padding: 96px 0;
}
#about-body img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
#about-body .value-card {
  background: #f8f9fa;
  border-left: 4px solid hsl(98, 74%, 37%);
  padding: 24px;
  height: 100%;
}
#about-body .value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
#about-body .stat-box {
  background: hsl(278, 48%, 29%);
  color: #ffffff;
  padding: 28px 16px;
  text-align: center;
  height: 100%;
}
#about-body .stat-box .num {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(98, 74%, 37%);
  display: block;
}
#about-body .stat-box .label {
  font-size: 0.9rem;
  color: #f0f0f0;
}
#about-body .qa-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
#about-body .qa-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
#about-body .cta-block {
  background: hsl(292, 38%, 13%);
  color: #ffffff;
  padding: 48px 32px;
  text-align: center;
}
#about-body .cta-block h2 {
  color: #ffffff;
}
#about-body .cta-block p {
  color: #e6e6e6;
}
#about-body .btn-accent {
  background: hsl(98, 74%, 37%);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  border-radius: 0;
}
#about-body .btn-accent:hover {
  background: hsl(98, 74%, 30%);
  color: #ffffff;
}
#about-body a {
  color: hsl(278, 48%, 29%);
}
@media (max-width: 767px) {
  #about-body .about-hero, #about-body .about-section {
    padding: 64px 0;
  }
}

.hero-section {
    background: #f8f9fa;
    padding: 64px 0;
    font-family: 'Merriweather', serif;
}
.hero-section h1 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: hsl(292, 38%, 13%);
    font-size: 2.2rem;
}
.hero-section h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: hsl(278, 48%, 29%);
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.hero-desc {
    color: #333;
    font-size: 1.05rem;
    margin-bottom: 24px;
}
.info-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}
.info-strip .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 14px;
    border-radius: 0;
    color: #222;
    font-size: 0.92rem;
}
.info-strip .info-item i {
    color: hsl(98, 74%, 37%);
    font-size: 1.1rem;
}
.btn-hero-primary {
    background-color: hsl(278, 48%, 29%);
    border: 2px solid hsl(278, 48%, 29%);
    color: #fff;
    border-radius: 0;
    padding: 12px 28px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    transition: all 0.25s ease;
}
.btn-hero-primary:hover {
    background-color: hsl(98, 74%, 37%);
    border-color: hsl(98, 74%, 37%);
    color: #fff;
}
.btn-hero-secondary {
    background-color: transparent;
    border: 2px solid hsl(278, 48%, 29%);
    color: hsl(278, 48%, 29%);
    border-radius: 0;
    padding: 12px 28px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    transition: all 0.25s ease;
}
.btn-hero-secondary:hover {
    background-color: hsl(278, 48%, 29%);
    color: #fff;
}
.hero-img {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: auto;
    object-fit: cover;
}
@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 1.7rem;
    }
    .hero-section h2 {
        font-size: 1.1rem;
    }
}

#about {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
  color: #2b2b2b;
}
#about h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(278, 48%, 29%);
  font-weight: 700;
  margin-bottom: 24px;
}
#about h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(292, 38%, 13%);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
}
#about p {
  line-height: 1.8;
  margin-bottom: 16px;
}
#about img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 24px;
}
#about .values-list {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}
#about .values-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}
#about .values-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: hsl(98, 74%, 37%);
  font-weight: 700;
}
#about .stat-box {
  border-left: 3px solid hsl(98, 74%, 37%);
  padding-left: 16px;
  margin-bottom: 16px;
}
#about .stat-box strong {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  color: hsl(278, 48%, 29%);
}
@media (max-width: 767px) {
  #about {
    padding: 64px 0;
  }
}

.services-section{
  background:#ffffff;
  padding:96px 0;
  font-family:'Merriweather',serif;
}
.services-section h2{
  font-family:'Lato',sans-serif;
  color:hsl(292,38%,13%);
  font-weight:700;
}
.services-section .lead-text{
  color:#333;
  max-width:700px;
}
.service-card{
  border:1px solid #e0e0e0;
  border-radius:0;
  background:#f8f9fa;
  height:100%;
  padding:32px 24px;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 22px rgba(0,0,0,0.15);
  background:#ffffff;
  border-color:hsl(278,48%,29%);
}
.service-icon{
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:hsl(278,48%,29%);
  color:#ffffff;
  border-radius:0;
  margin-bottom:20px;
  font-size:1.6rem;
}
.service-card h3{
  font-family:'Lato',sans-serif;
  font-size:1.15rem;
  color:hsl(292,38%,13%);
  font-weight:700;
  margin-bottom:12px;
}
.service-card p{
  color:#333;
  font-size:0.95rem;
  line-height:1.6;
  margin-bottom:16px;
}
.service-price{
  display:inline-block;
  font-family:'Lato',sans-serif;
  font-weight:700;
  color:#ffffff;
  background:hsl(98,74%,37%);
  padding:6px 14px;
  font-size:0.95rem;
}

#assurance {
  padding: 96px 0;
  background-color: #f8f9fa;
}
#assurance h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(292, 38%, 13%);
}
#assurance .lead-text {
  font-family: 'Merriweather', serif;
  color: #444;
  font-size: 0.98rem;
}
#assurance .assurance-card {
  border: 1px solid #ddd;
  border-radius: 0;
  background-color: #fff;
  padding: 20px 18px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#assurance .assurance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
#assurance .assurance-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 0;
  background-color: hsl(278, 48%, 29%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 14px;
}
#assurance .assurance-text {
  font-family: 'Merriweather', serif;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
#assurance .card-inner {
  display: flex;
  align-items: flex-start;
}

#common-questions {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
  color: #222222;
}
#common-questions h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(292, 38%, 13%);
  font-weight: 700;
  margin-bottom: 16px;
}
#common-questions .lead-text {
  color: #333333;
  margin-bottom: 48px;
  max-width: 720px;
}
#common-questions .accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 0;
  margin-bottom: 12px;
}
#common-questions .accordion-button {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(292, 38%, 13%);
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: none;
}
#common-questions .accordion-button:not(.collapsed) {
  background-color: hsl(278, 48%, 29%);
  color: #ffffff;
}
#common-questions .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(278, 48%, 29%);
}
#common-questions .accordion-button::after {
  filter: none;
}
#common-questions .accordion-body {
  background-color: #f8f9fa;
  color: #333333;
  line-height: 1.7;
  font-size: 1rem;
}
#common-questions .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

#enquiry {
  font-family: 'Merriweather', serif;
  background-color: #f8f9fa;
  color: #222;
  padding: 96px 0;
}
#enquiry h2, #enquiry h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(292, 38%, 13%);
}
#enquiry .form-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 40px;
}
#enquiry .form-label {
  font-family: 'Lato', sans-serif;
  color: #222;
  font-weight: 600;
}
#enquiry .form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  padding: 10px 14px;
  font-family: 'Merriweather', serif;
}
#enquiry .form-control:focus {
  border-color: hsl(278, 48%, 29%);
  box-shadow: 0 0 0 0.2rem hsla(278, 48%, 29%, 0.15);
}
#enquiry .btn-submit {
  background-color: hsl(98, 74%, 37%);
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 12px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#enquiry .btn-submit:hover {
  background-color: hsl(98, 74%, 30%);
  color: #ffffff;
}
#enquiry .info-card {
  background-color: hsl(292, 38%, 13%);
  color: #f8f9fa;
  padding: 40px;
  height: 100%;
}
#enquiry .info-card h3 {
  color: #ffffff;
}
#enquiry .info-card a {
  color: hsl(98, 74%, 55%);
  text-decoration: none;
}
#enquiry .info-card a:hover {
  color: #ffffff;
  text-decoration: underline;
}
#enquiry .info-item {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 20px;
}
#enquiry .info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#enquiry .info-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(98, 74%, 55%);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
#enquiry .find-us {
  font-size: 0.95rem;
  color: #e0e0e0;
}
#enquiry .hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 2px 0;
}

#notice {
  font-family: 'Merriweather', serif;
  background-color: #f5f5f5;
  padding: 96px 0;
  color: #222;
}
#notice h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(278, 48%, 29%);
  font-weight: 700;
  margin-bottom: 24px;
}
#notice .notice-icon {
  color: hsl(98, 74%, 37%);
  font-size: 2rem;
  margin-right: 16px;
  flex-shrink: 0;
}
#notice .notice-box {
  background-color: #fff;
  border: 1px solid #ddd;
  border-left: 4px solid hsl(278, 48%, 29%);
  border-radius: 0;
  padding: 32px;
  display: flex;
  align-items: flex-start;
}
#notice p {
  margin: 0;
  line-height: 1.8;
  color: #333;
  font-size: 1rem;
}

#services-section {
  font-family: 'Merriweather', serif;
  background-color: #ffffff;
  color: #222222;
  padding: 96px 0;
}
#services-section h1,
#services-section h2,
#services-section h3,
#services-section h4 {
  font-family: 'Lato', sans-serif;
}
#services-section .intro-block {
  max-width: 820px;
  margin: 0 auto 64px auto;
}
#services-section .intro-block h1 {
  color: hsl(292, 38%, 13%);
  font-weight: 700;
  margin-bottom: 24px;
}
#services-section .intro-block p {
  margin-bottom: 16px;
  line-height: 1.7;
}
#services-section .intro-block h4 {
  color: hsl(278, 48%, 29%);
  margin-top: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}
#services-section .card {
  border: 1px solid #e0e0e0;
  border-radius: 0;
  height: 100%;
  padding: 28px;
  background-color: #ffffff;
  transition: box-shadow 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}
#services-section .card:hover {
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
  transform: translateY(-4px);
  background-color: #faf7fc;
}
#services-section .card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(278, 48%, 29%);
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
#services-section .card h3 {
  color: hsl(292, 38%, 13%);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
#services-section .card p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: #333333;
  margin-bottom: 16px;
}
#services-section .price-tag {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #ffffff;
  background-color: hsl(98, 74%, 37%);
  padding: 6px 16px;
}
#services-section .price-tag.free {
  background-color: hsl(292, 38%, 13%);
}
#services-section .cta-box {
  margin-top: 88px;
  background-color: hsl(292, 38%, 13%);
  color: #ffffff;
  padding: 48px;
  text-align: center;
}
#services-section .cta-box h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 14px;
}
#services-section .cta-box p {
  color: #f0e9f5;
  margin-bottom: 24px;
}
#services-section .cta-box .btn-cta {
  background-color: hsl(98, 74%, 37%);
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
}
#services-section .btn-cta:hover {
  background-color: #7fae1f;
  color: #ffffff;
}
#services-section .row.g-4 {
  --bs-gutter-x: 1.5rem;
}
@media (max-width: 767px) {
  #services-section {
    padding: 64px 0;
  }
  #services-section .cta-box {
    padding: 32px 20px;
  }
}



  

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

  .thankyou-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 3rem 2rem;
    max-width: 640px;
    width: 100%;
    text-align: center;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35);
    animation: fadeUp 0.7s ease-out;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pop 0.5s ease-out 0.2s both;
    box-shadow: 0 0 0 8px rgba(98, 74, 37, 0.08);
  }

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

  .success-icon-wrapper svg {
    width: 50px;
    height: 50px;
    stroke: #ffffff;
  }

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

  .thankyou-text {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
  }

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

  .info-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    text-align: left;
    display: inline-block;
  }

  .info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    color: var(--clr-secondary);
    font-size: 0.98rem;
  }

  .info-list li svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    stroke: var(--clr-accent);
    margin-top: 2px;
  }

  .btn-home {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    background-color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
    color: #ffffff;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
  }

  .btn-home:hover {
    background-color: var(--clr-secondary);
    border-color: var(--clr-secondary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  }

  .btn-home:active {
    transform: translateY(0);
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2rem 1.25rem;
    }
    .success-icon-wrapper {
      width: 80px;
      height: 80px;
    }
    .success-icon-wrapper svg {
      width: 40px;
      height: 40px;
    }
  }
