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

:root {
  --primary: hsl(267, 31%, 41%);
  --secondary: hsl(273, 30%, 26%);
  --accent: hsl(259, 51%, 60%);
}

body{
  font-family:'Libre Baskerville', serif;
  color:#2b2b2b;
  background-color:#ffffff;
}
h1,h2,h3,h4,h5,h6{
  font-family:'Quicksand', sans-serif;
  color:var(--secondary);
}
.navbar{
  background-color:#ffffff;
  border-bottom:1px solid #e5e0ec;
  padding-top:1rem;
  padding-bottom:1rem;
}
.navbar-brand{
  font-family:'Quicksand', sans-serif;
  font-weight:700;
  font-size:1.4rem;
  color:var(--secondary);
  display:flex;
  align-items:center;
  gap:0.6rem;
}
.navbar-brand img{
  display:block;
}
.navbar-nav .nav-link{
  font-family:'Quicksand', sans-serif;
  font-weight:600;
  color:var(--secondary);
  padding:0.5rem 1rem;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus{
  color:var(--primary);
}
.navbar-toggler{
  border-color:var(--primary);
}
.navbar-toggler:focus{
  box-shadow:0 0 0 0.2rem rgba(103,71,153,0.25);
}



  

  .thankyou-section {
    font-family: 'Libre Baskerville', serif;
    background: linear-gradient(135deg, hsl(267, 31%, 97%) 0%, hsl(259, 51%, 95%) 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(78, 55, 122, 0.15);
    padding: 3rem 2rem;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    border-top: 6px solid var(--accent);
  }

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

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

  .icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    box-shadow: 0 0.5rem 1.5rem rgba(103, 76, 163, 0.35);
    animation: popIn 0.5s ease-out;
  }

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

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

  .info-box {
    background: hsl(267, 31%, 96%);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0;
    text-align: left;
  }

  .info-box ul {
    margin: 0;
    padding-left: 1.25rem;
  }

  .info-box li {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-size: 0.98rem;
  }

  .info-box li:last-child {
    margin-bottom: 0;
  }

  .btn-home {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background-color: var(--primary);
    border: none;
    color: #fff;
    padding: 0.75rem 2.25rem;
    border-radius: 50px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.3rem 0.75rem rgba(103, 76, 163, 0.3);
  }

  .btn-home:hover {
    background-color: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.25rem rgba(103, 76, 163, 0.4);
  }

  .divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
    display: inline-block;
    margin: 1.25rem 0;
  }

footer {
  background-color: hsl(273, 30%, 26%);
  color: #f5f5f5;
  padding: 80px 0 24px;
  font-family: 'Libre Baskerville', serif;
}
footer h3, footer h5 {
  font-family: 'Quicksand', sans-serif;
  color: #ffffff;
}
footer a {
  color: #e6e0f0;
  text-decoration: none;
}
footer a:hover {
  color: hsl(259, 51%, 60%);
  text-decoration: underline;
}
footer .footer-divider {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 40px 0 20px;
}
footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
footer .social-icons a:hover {
  background-color: hsl(259, 51%, 60%);
  border-color: hsl(259, 51%, 60%);
  color: #ffffff;
}
footer ul {
  list-style: none;
  padding-left: 0;
}
footer ul li {
  margin-bottom: 10px;
}

#privacyBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background-color: hsl(273, 30%, 26%);
  color: #f5f5f5;
  border-top: 3px solid hsl(259, 51%, 60%);
  padding: 18px 0;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Libre Baskerville', serif;
}
#privacyBanner h5 {
  font-family: 'Quicksand', sans-serif;
  color: #ffffff;
  margin-bottom: 8px;
}
#privacyBanner p, #privacyBanner li {
  font-size: 0.9rem;
  color: #e6e0f0;
}
#privacyBanner .cookie-cat {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 12px;
  margin-bottom: 6px;
  font-size: 0.85rem;
}
.btn-cookie {
  border-radius: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 10px 18px;
  border: 2px solid hsl(259, 51%, 60%);
  transition: background-color 0.2s ease, color 0.2s ease;
  min-width: 160px;
}
.btn-accept-all {
  background-color: hsl(259, 51%, 60%);
  color: #ffffff;
}
.btn-accept-all:hover {
  background-color: hsl(267, 31%, 41%);
  color: #ffffff;
}
.btn-reject-optional {
  background-color: transparent;
  color: #ffffff;
}
.btn-reject-optional:hover {
  background-color: rgba(255,255,255,0.15);
  color: #ffffff;
}
.btn-manage {
  color: #e6e0f0;
  text-decoration: underline;
  font-size: 0.85rem;
}
.btn-manage:hover {
  color: hsl(259, 51%, 60%);
}

#contact-content {
  font-family: 'Libre Baskerville', serif;
  background-color: #ffffff;
  color: #222;
  padding: 96px 0;
}
#contact-content h1,
#contact-content h2,
#contact-content h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(273, 30%, 26%);
}
#contact-content .intro-text {
  max-width: 720px;
  color: #333;
}
#contact-content .contact-card {
  background-color: #f8f7fb;
  border: 1px solid #ddd6ea;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 32px;
  height: 100%;
}
#contact-content .contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
#contact-content .contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contact-content .contact-info-list li {
  margin-bottom: 16px;
  padding-left: 0;
  font-size: 1rem;
}
#contact-content .contact-info-list strong {
  display: block;
  font-family: 'Quicksand', sans-serif;
  color: hsl(267, 31%, 41%);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
#contact-content a {
  color: hsl(267, 31%, 41%);
  text-decoration: underline;
}
#contact-content a:hover {
  color: hsl(259, 51%, 60%);
}
#contact-content .map-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.95rem;
}
#contact-content .form-card {
  background-color: #ffffff;
  border: 1px solid #e0dbea;
  border-radius: 0;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  padding: 40px;
}
#contact-content .form-label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
#contact-content .form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  padding: 10px 14px;
  font-family: 'Libre Baskerville', serif;
}
#contact-content .form-control:focus {
  border-color: hsl(259, 51%, 60%);
  box-shadow: 0 0 0 3px hsla(259, 51%, 60%, 0.2);
}
#contact-content .btn-submit {
  background-color: hsl(267, 31%, 41%);
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 12px 32px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background-color 0.2s ease;
}
#contact-content .btn-submit:hover {
  background-color: hsl(259, 51%, 60%);
  color: #ffffff;
}
#contact-content .hours-note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
}
#contact-content .cta-strip {
  background-color: hsl(273, 30%, 26%);
  color: #ffffff;
  padding: 40px;
  margin-top: 96px;
  text-align: center;
  border-radius: 0;
}
#contact-content .cta-strip h2 {
  color: #ffffff;
  margin-bottom: 16px;
}
#contact-content .cta-strip a.btn-cta {
  display: inline-block;
  background-color: hsl(259, 51%, 60%);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 34px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: 0;
  margin-top: 8px;
}
#contact-content .cta-strip a.btn-cta:hover {
  background-color: hsl(267, 31%, 41%);
}
@media (max-width: 767px) {
  #contact-content { padding: 64px 0; }
  #contact-content .form-card { padding: 24px; }
  #contact-content .contact-card { padding: 24px; }
}

#services-body {
  font-family: 'Libre Baskerville', serif;
  background-color: #ffffff;
  color: #222222;
  padding: 96px 0;
}
#services-body h1, #services-body h2, #services-body h3, #services-body h4 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(273, 30%, 26%);
}
#services-body .intro-block {
  max-width: 820px;
  margin: 0 auto 80px auto;
}
#services-body .intro-block p {
  font-size: 1.05rem;
  line-height: 1.75;
}
#services-body .subheading-block {
  margin-bottom: 56px;
}
#services-body .subheading-block h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  border-left: 4px solid hsl(259, 51%, 60%);
  padding-left: 14px;
}
#services-body .subheading-block p {
  line-height: 1.75;
  margin: 0;
}
#services-body .services-two-col {
  margin-top: 40px;
}
#services-body .service-row {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #dcd6e6;
}
#services-body .service-row:last-child {
  border-bottom: 1px solid #dcd6e6;
}
#services-body .service-item {
  padding: 40px 28px;
  width: 50%;
  border-right: 1px solid #dcd6e6;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
#services-body .service-item:nth-child(2) {
  border-right: none;
}
#services-body .service-item:hover {
  background-color: #f5f2fa;
  transform: translateY(-4px);
}
#services-body .service-icon {
  font-size: 2.1rem;
  color: hsl(259, 51%, 60%);
  margin-bottom: 16px;
}
#services-body .service-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
#services-body .service-item p.desc {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 16px;
}
#services-body .service-price {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: hsl(267, 31%, 41%);
}
#services-body .cta-box {
  margin-top: 96px;
  background-color: hsl(273, 30%, 26%);
  padding: 56px 32px;
  text-align: center;
}
#services-body .cta-box h2 {
  color: #ffffff;
  margin-bottom: 16px;
}
#services-body .cta-box p {
  color: #f0edf5;
  max-width: 620px;
  margin: 0 auto 28px auto;
  line-height: 1.7;
}
#services-body .cta-box a.btn {
  background-color: hsl(259, 51%, 60%);
  color: #ffffff;
  border: none;
  padding: 12px 34px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: 0;
  text-decoration: none;
}
#services-body .cta-box a.btn:hover {
  background-color: #ffffff;
  color: hsl(273, 30%, 26%);
}
@media (max-width: 767px) {
  #services-body .service-item {
    width: 100%;
    border-right: none;
  }
  #services-body .service-item:not(:last-child) {
    border-bottom: 1px solid #dcd6e6;
  }
}

.hero-section {
  background-color: #f8f7fb;
  padding: 96px 0;
}

.hero-section h1 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(273, 30%, 26%);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.hero-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  color: hsl(267, 31%, 41%);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.hero-section p.description {
  font-family: 'Libre Baskerville', serif;
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-section .hero-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.hero-section .hero-list li {
  font-family: 'Libre Baskerville', serif;
  color: #333;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1rem;
}

.hero-section .hero-list i {
  color: hsl(259, 51%, 60%);
  font-size: 1.2rem;
  margin-top: 0.15rem;
}

.hero-btn-primary {
  background-color: hsl(267, 31%, 41%);
  border: 2px solid hsl(267, 31%, 41%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 0;
  transition: all 0.25s ease;
}

.hero-btn-primary:hover {
  background-color: hsl(273, 30%, 26%);
  border-color: hsl(273, 30%, 26%);
  color: #fff;
}

.hero-btn-secondary {
  background-color: transparent;
  border: 2px solid hsl(267, 31%, 41%);
  color: hsl(267, 31%, 41%);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 0;
  transition: all 0.25s ease;
}

.hero-btn-secondary:hover {
  background-color: hsl(259, 51%, 60%);
  border-color: hsl(259, 51%, 60%);
  color: #fff;
}

.hero-image-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #e0dce8;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 56px 0;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}

#answers {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Libre Baskerville', serif;
  color: #2b2b2b;
}
#answers h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(273, 30%, 26%);
  font-weight: 700;
}
#answers .lead-text {
  color: #444;
  max-width: 700px;
  margin: 0 auto 48px;
}
#answers .accordion-item {
  border: 1px solid #ddd;
  border-radius: 0;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  background-color: #fff;
}
#answers .accordion-button {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(273, 30%, 26%);
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: none;
}
#answers .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: hsl(267, 31%, 41%);
}
#answers .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(259, 51%, 60%);
}
#answers .accordion-button::after {
  filter: none;
}
#answers .accordion-body {
  color: #333;
  background-color: #faf8fc;
  line-height: 1.7;
}
@media (max-width: 767px) {
  #answers {
    padding: 64px 0;
  }
  #answers .accordion-button {
    font-size: 0.95rem;
  }
}

#projects {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Libre Baskerville', serif;
  color: #222;
}
#projects h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(273, 30%, 26%);
  font-weight: 700;
}
#projects .lead-text {
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}
#projects .portfolio-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  height: 100%;
  transition: box-shadow 0.2s ease;
  overflow: hidden;
}
#projects .portfolio-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
#projects .portfolio-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
#projects .card-body {
  padding: 1.25rem;
}
#projects .badge-category {
  background-color: hsl(259, 51%, 60%);
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: 0;
  padding: 0.4em 0.8em;
  font-size: 0.78rem;
  display: inline-block;
  margin-bottom: 0.6rem;
}
#projects .card-title {
  font-family: 'Quicksand', sans-serif;
  color: hsl(273, 30%, 26%);
  font-weight: 700;
  font-size: 1.15rem;
}
#projects .card-text {
  color: #333;
  font-size: 0.95rem;
}
#projects .btn-details {
  background-color: hsl(267, 31%, 41%);
  color: #ffffff;
  border: none;
  border-radius: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
}
#projects .btn-details:hover {
  background-color: hsl(273, 30%, 26%);
  color: #ffffff;
}
#projects .modal-content {
  border-radius: 0;
  border: 1px solid #ddd;
}
#projects .modal-header {
  background-color: hsl(273, 30%, 26%);
  color: #ffffff;
  border-radius: 0;
}
#projects .modal-header .btn-close {
  filter: invert(1);
}
#projects .modal-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
}
#projects .modal-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
#projects .modal-body {
  color: #333;
  background-color: #ffffff;
}
#projects .stats-strip {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 24px 0;
  margin-top: 64px;
  background-color: #f8f7fb;
}
#projects .stats-strip .stat-num {
  font-family: 'Quicksand', sans-serif;
  color: hsl(267, 31%, 41%);
  font-weight: 700;
  font-size: 1.8rem;
}
#projects .stats-strip .stat-label {
  color: #333;
  font-size: 0.9rem;
}

#our-approach {
  padding: 96px 0;
  background-color: #ffffff;
}

#our-approach .section-heading {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(273, 30%, 26%);
  margin-bottom: 12px;
}

#our-approach .section-sub {
  font-family: 'Libre Baskerville', serif;
  color: #444;
  max-width: 640px;
  margin: 0 auto 48px;
}

#our-approach .work-card {
  border: 1px solid #e0dce7;
  border-radius: 0;
  background-color: #fbfaf d;
  background-color: #fbfaff;
  padding: 28px 22px;
  height: 100%;
  box-shadow: 0 2px 6px rgba(60, 40, 90, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
}

#our-approach .work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(60, 40, 90, 0.14);
}

#our-approach .work-icon {
  width: 46px;
  height: 46px;
  border-radius: 0;
  background-color: hsl(259, 51%, 60%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

#our-approach .work-text {
  font-family: 'Libre Baskerville', serif;
  color: #2b2530;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.services-section {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Libre Baskerville', serif;
  color: #222;
}

.services-section h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(273, 30%, 26%);
  font-weight: 700;
}

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

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background-color: #ffffff;
  border: 1px solid #e0dde6;
  border-radius: 0;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transform: translateY(-4px);
  border-color: hsl(259, 51%, 60%);
}

.service-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 0;
  background-color: hsl(267, 31%, 41%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: hsl(259, 51%, 60%);
}

.service-content h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(273, 30%, 26%);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.service-content p {
  color: #333;
  font-size: 0.98rem;
  margin-bottom: 14px;
  line-height: 1.6;
}

.service-price {
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(267, 31%, 41%);
  font-size: 1.15rem;
  border-top: 1px solid #e0dde6;
  padding-top: 10px;
  width: 100%;
}

.service-price span {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: #555;
  display: block;
  margin-top: 2px;
}

@media (max-width: 576px) {
  .service-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

#deal {
  background: linear-gradient(135deg, hsl(267, 31%, 41%) 0%, hsl(259, 51%, 60%) 100%);
  padding: 96px 0;
}
#deal h2, #deal h3 {
  font-family: 'Quicksand', sans-serif;
  color: #ffffff;
}
#deal p, #deal li {
  font-family: 'Libre Baskerville', serif;
  color: #f5f0fa;
}
#deal .card {
  background-color: #ffffff;
  border: 1px solid hsl(273, 30%, 26%);
  border-radius: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
#deal .card-body h4 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(273, 30%, 26%);
}
#deal .card-body p, #deal .card-body li {
  color: #333333;
  font-family: 'Libre Baskerville', serif;
}
#deal .date-box {
  background-color: hsl(273, 30%, 26%);
  color: #ffffff;
  border-radius: 0;
  padding: 18px 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}
#deal .date-box i {
  font-size: 1.6rem;
  color: #ffffff;
}
#deal ul.benefits {
  list-style: none;
  padding-left: 0;
}
#deal ul.benefits li {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
#deal ul.benefits li i {
  color: hsl(259, 51%, 60%);
  font-size: 1.2rem;
  margin-top: 3px;
}
#deal .btn-cta {
  background-color: hsl(259, 51%, 60%);
  color: #ffffff;
  border: none;
  border-radius: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 14px 36px;
  font-size: 1.05rem;
  transition: background-color 0.2s ease;
}
#deal .btn-cta:hover {
  background-color: hsl(273, 30%, 26%);
  color: #ffffff;
}
#deal .badge-discount {
  background-color: #ffffff;
  color: hsl(267, 31%, 41%);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
@media (max-width: 576px) {
  #deal .date-box {
    font-size: 1.1rem;
    padding: 14px 20px;
  }
}

#mailing {
  background-color: hsl(267, 31%, 41%);
  padding: 96px 0;
}

#mailing h2 {
  font-family: 'Quicksand', sans-serif;
  color: #ffffff;
  font-weight: 700;
}

#mailing p.mailing-desc {
  font-family: 'Libre Baskerville', serif;
  color: #f0eaf7;
  max-width: 620px;
  margin: 0 auto;
}

#mailing .mailing-card {
  background-color: #ffffff;
  border: 1px solid #ddd6e8;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  border-radius: 0;
  padding: 40px;
}

#mailing .form-control {
  border-radius: 0;
  border: 1px solid hsl(273, 30%, 26%);
  font-family: 'Libre Baskerville', serif;
  color: #222;
  padding: 12px 16px;
}

#mailing .form-control:focus {
  border-color: hsl(259, 51%, 60%);
  box-shadow: 0 0 0 0.2rem rgba(122, 90, 176, 0.25);
}

#mailing .btn-subscribe {
  background-color: hsl(259, 51%, 60%);
  color: #ffffff;
  border: none;
  border-radius: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  transition: background-color 0.2s ease;
}

#mailing .btn-subscribe:hover {
  background-color: hsl(273, 30%, 26%);
  color: #ffffff;
}

#mailing .mailing-note {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.9rem;
  color: #555;
  margin-top: 16px;
}

#value {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Libre Baskerville', serif;
}
#value .section-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(273, 30%, 26%);
  margin-bottom: 16px;
}
#value .section-sub {
  color: #444;
  max-width: 700px;
  margin: 0 auto 56px auto;
}
#value .adv-card {
  background-color: #fff;
  border: 1px solid #e0dbe8;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  padding: 32px 24px;
  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 24px rgba(76, 47, 122, 0.18);
  border-color: hsl(259, 51%, 60%);
}
#value .adv-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(267, 31%, 41%);
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
#value .adv-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(273, 30%, 26%);
  margin-bottom: 12px;
  font-size: 1.15rem;
}
#value .adv-text {
  color: #333;
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 0;
}

#reviews {
  background: #f7f5fa;
  padding: 96px 0;
  font-family: 'Libre Baskerville', serif;
  color: #222;
}
#reviews h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(273, 30%, 26%);
  font-weight: 700;
}
#reviews .lead-text {
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}
#reviews .review-card {
  background: #fff;
  border: 1px solid #e0dbe8;
  box-shadow: 0 3px 10px rgba(60,40,90,0.06);
  border-radius: 0;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#reviews .review-card.accent-card {
  background: hsl(267, 31%, 41%);
  color: #fff;
  border: 1px solid hsl(273, 30%, 26%);
}
#reviews .review-card.accent-card p,
#reviews .review-card.accent-card .r-name,
#reviews .review-card.accent-card .r-loc {
  color: #fff;
}
#reviews .review-card.tint-card {
  background: #eee8f5;
  border: 1px solid hsl(259, 51%, 60%);
}
#reviews .stars {
  color: hsl(259, 51%, 60%);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
#reviews .review-card.accent-card .stars {
  color: #f0e9ff;
}
#reviews .r-text {
  flex-grow: 1;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
#reviews .r-name {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(273, 30%, 26%);
  margin-bottom: 0;
}
#reviews .r-loc {
  font-size: 0.85rem;
  color: #666;
}
#reviews .review-card.tint-card .r-loc {
  color: #55495f;
}
#reviews .badge-short {
  display: inline-block;
  font-size: 0.75rem;
  background: hsl(259, 51%, 60%);
  color: #fff;
  padding: 3px 10px;
  margin-bottom: 12px;
  font-family: 'Quicksand', sans-serif;
}
#reviews .summary-strip {
  border-top: 1px solid #dcd3e8;
  border-bottom: 1px solid #dcd3e8;
  padding: 24px 0;
  margin-top: 72px;
}
#reviews .summary-strip .num {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: hsl(267, 31%, 41%);
}
#reviews .summary-strip .lbl {
  font-size: 0.85rem;
  color: #444;
}

#who-we-are {
  padding: 96px 0;
  background: #ffffff;
  font-family: 'Libre Baskerville', serif;
  color: #2a2a2a;
}
#who-we-are h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(273, 30%, 26%);
  font-weight: 700;
  margin-bottom: 24px;
}
#who-we-are h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(267, 31%, 41%);
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 24px;
  margin-bottom: 12px;
}
#who-we-are p {
  line-height: 1.75;
  font-size: 1rem;
  color: #333333;
}
#who-we-are .lead-text {
  font-size: 1.1rem;
  color: hsl(273, 30%, 26%);
  border-left: 4px solid hsl(259, 51%, 60%);
  padding-left: 16px;
  margin-bottom: 32px;
}
#who-we-are .about-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 0;
  margin-bottom: 24px;
}
#who-we-are .stat-card {
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  background: #f9f7fb;
  padding: 20px;
  text-align: center;
  border-radius: 0;
}
#who-we-are .stat-card .num {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(267, 31%, 41%);
  display: block;
}
#who-we-are .stat-card .label {
  font-size: 0.9rem;
  color: #555555;
}

#get-in-touch {
  background-color: #f7f5fa;
  padding: 96px 0;
  font-family: 'Libre Baskerville', serif;
  color: #222;
}
#get-in-touch h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(273, 30%, 26%);
  font-weight: 700;
}
#get-in-touch p {
  color: #333;
}
#get-in-touch .contact-card {
  background-color: #fff;
  border: 1px solid #e0dbe8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-radius: 0;
  padding: 40px;
  height: 100%;
}
#get-in-touch .contact-card h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(267, 31%, 41%);
  font-weight: 600;
  margin-bottom: 24px;
}
#get-in-touch .form-label {
  font-family: 'Quicksand', sans-serif;
  color: #222;
  font-weight: 600;
}
#get-in-touch .form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  font-family: 'Libre Baskerville', serif;
}
#get-in-touch .form-control:focus {
  border-color: hsl(259, 51%, 60%);
  box-shadow: 0 0 0 0.2rem hsla(259, 51%, 60%, 0.25);
}
#get-in-touch .btn-submit {
  background-color: hsl(267, 31%, 41%);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 12px 32px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
#get-in-touch .btn-submit:hover {
  background-color: hsl(273, 30%, 26%);
  color: #fff;
}
#get-in-touch .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#get-in-touch .info-list li {
  margin-bottom: 20px;
  padding-left: 32px;
  position: relative;
  color: #333;
}
#get-in-touch .info-list li strong {
  display: block;
  font-family: 'Quicksand', sans-serif;
  color: hsl(273, 30%, 26%);
  font-weight: 600;
  margin-bottom: 4px;
}
#get-in-touch .info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  background-color: hsl(259, 51%, 60%);
}
#get-in-touch .info-list a {
  color: hsl(267, 31%, 41%);
  text-decoration: none;
  border-bottom: 1px solid hsl(259, 51%, 60%);
}
#get-in-touch .info-list a:hover {
  color: hsl(273, 30%, 26%);
}
#get-in-touch .map-link {
  display: inline-block;
  margin-top: 8px;
  color: hsl(267, 31%, 41%);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid hsl(259, 51%, 60%);
}
#get-in-touch .map-link:hover {
  color: hsl(273, 30%, 26%);
}
@media (max-width: 767px) {
  #get-in-touch {
    padding: 64px 0;
  }
  #get-in-touch .contact-card {
    padding: 28px;
  }
}

#legal-notice {
  background-color: #f8f7fb;
  padding: 96px 0;
  font-family: 'Libre Baskerville', serif;
  color: #2b2b2b;
}
#legal-notice h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(273, 30%, 26%);
  font-weight: 600;
}
#legal-notice .disclaimer-card {
  background-color: #ffffff;
  border: 1px solid #ddd6ea;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 0;
  padding: 40px;
}
#legal-notice .icon-wrap {
  width: 56px;
  height: 56px;
  background-color: hsl(259, 51%, 60%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: 1.6rem;
  flex-shrink: 0;
}
#legal-notice p {
  line-height: 1.8;
  color: #333333;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  #legal-notice .disclaimer-card {
    padding: 24px;
  }
}
