@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Source+Sans+Pro:wght@400;600&display=swap');

:root {
  --primary: hsl(280, 41%, 38%);
  --secondary: hsl(286, 36%, 23%);
  --accent: hsl(272, 59%, 68%);
}

body{
    font-family: 'Source Sans Pro', sans-serif;
    color: #2a2a2a;
    background-color: #ffffff;
  }
  h1,h2,h3,h4,h5,h6{
    font-family: 'Montserrat', sans-serif;
  }
  .navbar{
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .navbar-brand{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .navbar-brand img{
    border-radius: 8px;
  }
  .navbar-nav .nav-link{
    color: var(--secondary);
    font-weight: 600;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .navbar-nav .nav-link:hover{
    color: var(--primary);
  }
  .navbar-toggler{
    border-color: var(--primary);
  }



  .thankyou-section {
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(135deg, hsl(280, 41%, 38%) 0%, hsl(286, 36%, 23%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 3rem 1rem;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 3rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
  }

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

  .success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: hsl(272, 59%, 68%, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn 0.5s ease-out 0.2s both;
  }

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

  .success-icon-circle {
    width: 76px;
    height: 76px;
    background: hsl(280, 41%, 38%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .success-icon-circle svg {
    width: 40px;
    height: 40px;
    stroke: #ffffff;
  }

  .thankyou-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: hsl(286, 36%, 23%);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .thankyou-message {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .thankyou-details {
    background: hsl(272, 59%, 68%, 0.08);
    border-left: 4px solid hsl(272, 59%, 68%);
    border-radius: 0.5rem;
    padding: 1.25rem 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
  }

  .thankyou-details ul {
    margin: 0;
    padding-left: 1.25rem;
  }

  .thankyou-details li {
    color: hsl(286, 36%, 23%);
    margin-bottom: 0.5rem;
    font-size: 0.98rem;
  }

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

  .btn-home {
    background: hsl(280, 41%, 38%);
    border: none;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2.25rem;
    border-radius: 0.6rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px hsl(280, 41%, 38%, 0.35);
  }

  .btn-home:hover {
    background: hsl(286, 36%, 23%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsl(286, 36%, 23%, 0.45);
  }

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

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

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2rem 1.25rem;
      border-radius: 1rem;
    }
  }

footer {
  background: hsl(286, 36%, 23%);
  color: #f5f5f5;
  font-family: 'Source Sans Pro', sans-serif;
  padding: 64px 0 24px;
}
footer h5, footer h6 {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  margin-bottom: 16px;
}
footer p, footer address, footer li {
  color: #e6e0ec;
}
footer a {
  color: #e6e0ec;
  text-decoration: none;
}
footer a:hover {
  color: hsl(272, 59%, 68%);
  text-decoration: underline;
}
footer .footer-col {
  margin-bottom: 32px;
}
footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: hsl(280, 41%, 38%);
  color: #ffffff;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background 0.2s ease;
}
footer .social-icons a:hover {
  background: hsl(272, 59%, 68%);
  color: #ffffff;
}
footer hr {
  border-color: rgba(255,255,255,0.15);
  margin: 32px 0 16px;
}
footer .bottom-line {
  font-size: 0.9rem;
  color: #cfc4da;
}
footer .bottom-line a {
  color: #cfc4da;
}
footer .bottom-line a:hover {
  color: hsl(272, 59%, 68%);
}

#consentBox {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #ffffff;
  color: #222222;
  border-top: 3px solid hsl(280, 41%, 38%);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  padding: 18px 0;
  max-height: 60%;
  overflow-y: auto;
  font-family: 'Source Sans Pro', sans-serif;
}
#consentBox h6 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(286, 36%, 23%);
  margin-bottom: 8px;
  font-size: 1.05rem;
}
#consentBox p {
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: #333333;
}
#consentBox ul {
  font-size: 0.85rem;
  padding-left: 18px;
  margin-bottom: 10px;
  color: #333333;
}
#consentBox .btn-consent {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.9rem;
  border: none;
  transition: all 0.2s ease;
  width: 100%;
}
#consentBox .btn-accept {
  background: hsl(280, 41%, 38%);
  color: #ffffff;
}
#consentBox .btn-accept:hover {
  background: hsl(272, 59%, 68%);
  color: #ffffff;
}
#consentBox .btn-reject {
  background: hsl(286, 36%, 23%);
  color: #ffffff;
}
#consentBox .btn-reject:hover {
  background: hsl(272, 59%, 68%);
  color: #ffffff;
}
#consentBox .link-manage {
  font-size: 0.85rem;
  color: hsl(280, 41%, 38%);
  text-decoration: underline;
}
#consentBox .link-manage:hover {
  color: hsl(272, 59%, 68%);
}

#services-body {
  font-family: 'Source Sans Pro', sans-serif;
  color: #2a2a2a;
  background-color: #ffffff;
  padding: 96px 0;
}

#services-body h1,
#services-body h2,
#services-body h3 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(286, 36%, 23%);
}

#services-body .content-column {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

#services-body .intro {
  margin-bottom: 88px;
}

#services-body .intro h1 {
  font-size: 2.1rem;
  margin-bottom: 24px;
}

#services-body .intro p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

#services-body .service-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid #e2dbe8;
}

#services-body .service-row:first-of-type {
  border-top: 1px solid #e2dbe8;
}

#services-body .service-main {
  flex: 1;
}

#services-body .service-number {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(272, 59%, 68%);
  margin-right: 10px;
  font-size: 1.05rem;
}

#services-body .service-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: hsl(286, 36%, 23%);
  margin-bottom: 8px;
}

#services-body .service-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0;
}

#services-body .service-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: hsl(280, 41%, 38%);
  white-space: nowrap;
  padding-top: 2px;
}

#services-body .process-block {
  margin-top: 96px;
}

#services-body .process-block h2 {
  font-size: 1.6rem;
  margin-bottom: 28px;
}

#services-body .process-step {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

#services-body .process-step .step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background-color: hsl(280, 41%, 38%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

#services-body .process-step p {
  margin: 0;
  line-height: 1.65;
  padding-top: 5px;
}

#services-body .terms-block {
  margin-top: 96px;
  background-color: #f8f6fa;
  border-radius: 8px;
  padding: 32px 28px;
}

#services-body .terms-block h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

#services-body .terms-block ul {
  padding-left: 20px;
  margin: 0;
}

#services-body .terms-block li {
  margin-bottom: 12px;
  line-height: 1.6;
}

#services-body .cta-block {
  margin-top: 96px;
  text-align: center;
  padding-top: 56px;
  border-top: 1px solid #e2dbe8;
}

#services-body .cta-block h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}

#services-body .cta-block p {
  margin-bottom: 26px;
  line-height: 1.6;
}

#services-body .btn-cta {
  display: inline-block;
  background-color: hsl(280, 41%, 38%);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 13px 34px;
  border-radius: 7px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

#services-body .btn-cta:hover {
  background-color: hsl(286, 36%, 23%);
  color: #ffffff;
}

@media (max-width: 576px) {
  #services-body .service-row {
    flex-direction: column;
  }
  #services-body .service-price {
    padding-top: 0;
  }
}

#about-page {
  background-color: #ffffff;
  color: #262626;
  font-family: 'Source Sans Pro', sans-serif;
  padding: 96px 0;
}
#about-page .narrow-column {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}
#about-page h1, #about-page h2, #about-page h3 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(286, 36%, 23%);
  font-weight: 700;
}
#about-page h1 {
  font-size: 2.1rem;
  margin-bottom: 8px;
}
#about-page .lead-line {
  color: hsl(280, 41%, 38%);
  font-size: 1.05rem;
  margin-bottom: 48px;
}
#about-page section + section,
#about-page .block {
  margin-top: 80px;
}
#about-page p {
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 1.02rem;
}
#about-page .image-block {
  margin: 40px 0;
}
#about-page img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
#about-page figcaption {
  font-size: 0.9rem;
  color: #5a5a5a;
  margin-top: 8px;
  text-align: center;
}
#about-page ul.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#about-page ul.values-list li {
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid #e6e0eb;
  position: relative;
}
#about-page ul.values-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: hsl(272, 59%, 68%);
  font-weight: 700;
}
#about-page ul.values-list li strong {
  color: hsl(286, 36%, 23%);
  display: block;
  margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
}
#about-page .facts-strip {
  background-color: #f7f5f9;
  border-radius: 8px;
  padding: 28px 24px;
  margin: 40px 0;
}
#about-page .facts-strip p {
  margin-bottom: 10px;
  font-size: 0.98rem;
}
#about-page .facts-strip p:last-child {
  margin-bottom: 0;
}
#about-page .qa-block {
  border-top: 2px solid hsl(272, 59%, 68%);
  padding-top: 40px;
}
#about-page .qa-item {
  margin-bottom: 28px;
}
#about-page .qa-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
#about-page .qa-item p {
  margin-bottom: 0;
}
#about-page .cta-box {
  background-color: hsl(280, 41%, 38%);
  border-radius: 8px;
  padding: 32px 28px;
  margin-top: 80px;
  text-align: center;
}
#about-page .cta-box h2 {
  color: #ffffff;
  margin-bottom: 12px;
}
#about-page .cta-box p {
  color: #f0e9f5;
  margin-bottom: 20px;
}
#about-page .cta-box a.btn-cta {
  display: inline-block;
  background-color: #ffffff;
  color: hsl(280, 41%, 38%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
}
#about-page .cta-box a.btn-cta:hover {
  background-color: hsl(272, 59%, 68%);
  color: #262626;
}
@media (max-width: 576px) {
  #about-page { padding: 64px 0; }
  #about-page .block { margin-top: 56px; }
  #about-page h1 { font-size: 1.7rem; }
}

#contact-body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #ffffff;
  color: #2a2a2a;
  padding: 96px 20px;
}
#contact-body .contact-column {
  max-width: 740px;
  margin: 0 auto;
}
#contact-body h1, #contact-body h2, #contact-body h3 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(286, 36%, 23%);
}
#contact-body p {
  line-height: 1.7;
  font-size: 1.05rem;
}
#contact-body .intro-text {
  margin-bottom: 56px;
}
#contact-body .info-block {
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e5e0eb;
}
#contact-body dl.contact-details {
  display: grid;
  grid-template-columns: 140px 1fr;
  row-gap: 14px;
  column-gap: 16px;
  margin-top: 24px;
}
#contact-body dl.contact-details dt {
  font-weight: 600;
  color: hsl(280, 41%, 38%);
}
#contact-body dl.contact-details dd {
  margin: 0;
}
#contact-body a {
  color: hsl(280, 41%, 38%);
  text-decoration: underline;
}
#contact-body a:hover {
  color: hsl(272, 59%, 68%);
}
#contact-body .find-us-line {
  margin-top: 20px;
  font-size: 0.98rem;
  padding: 14px 18px;
  background-color: #f7f4fa;
  border-radius: 8px;
}
#contact-body .form-label {
  font-weight: 600;
  color: hsl(286, 36%, 23%);
}
#contact-body .form-control {
  border-radius: 8px;
  border: 1px solid #cfc7d8;
  padding: 10px 14px;
}
#contact-body .form-control:focus {
  border-color: hsl(272, 59%, 68%);
  box-shadow: 0 0 0 0.2rem hsla(272, 59%, 68%, 0.25);
}
#contact-body textarea.form-control {
  min-height: 140px;
}
#contact-body .btn-submit {
  background-color: hsl(280, 41%, 38%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
#contact-body .btn-submit:hover {
  background-color: hsl(272, 59%, 68%);
  color: #2a2a2a;
}
#contact-body .form-wrapper {
  margin-top: 64px;
}
#contact-body .reply-note {
  margin-top: 18px;
  font-size: 0.95rem;
  color: #555;
}
#contact-body .cta-line {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid #e5e0eb;
  text-align: center;
}
#contact-body .cta-line a.btn-cta {
  display: inline-block;
  background-color: hsl(286, 36%, 23%);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-top: 16px;
}
#contact-body .cta-line a.btn-cta:hover {
  background-color: hsl(272, 59%, 68%);
  color: #2a2a2a;
}
@media (max-width: 576px) {
  #contact-body dl.contact-details {
    grid-template-columns: 1fr;
  }
  #contact-body dl.contact-details dt {
    margin-top: 10px;
  }
}

.hero-decomi {
  background-color: #ffffff;
  padding: 100px 0;
}
.hero-decomi .hero-column {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.hero-decomi .hero-icon {
  font-size: 2rem;
  color: hsl(272, 59%, 68%);
  margin-bottom: 20px;
}
.hero-decomi h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(286, 36%, 23%);
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.hero-decomi h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: hsl(280, 41%, 38%);
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.hero-decomi p.lead-text {
  font-family: 'Source Sans Pro', sans-serif;
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-decomi .btn-decomi {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: hsl(280, 41%, 38%);
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.hero-decomi .btn-decomi:hover {
  background-color: hsl(286, 36%, 23%);
  color: #ffffff;
  transform: translateY(-2px);
}
.hero-decomi .hero-image {
  margin-top: 48px;
}
.hero-decomi .hero-image img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

#who-we-are {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #2a2a2a;
}
#who-we-are .col-content {
  max-width: 760px;
  margin: 0 auto;
  float: none;
}
#who-we-are h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(286, 36%, 23%);
  margin-bottom: 24px;
  font-size: 2rem;
}
#who-we-are h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsl(280, 41%, 38%);
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}
#who-we-are p {
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 1.05rem;
}
#who-we-are .img-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
}
#who-we-are .img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
#who-we-are .img-caption {
  font-size: 0.9rem;
  color: #5a5a5a;
  margin-bottom: 40px;
  text-align: center;
}
#who-we-are .values-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}
#who-we-are .values-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid #eee;
  font-size: 1.02rem;
}
#who-we-are .values-list li:last-child {
  border-bottom: none;
}
#who-we-are .values-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: hsl(272, 59%, 68%);
}
#who-we-are .images-row {
  margin-top: 56px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  #who-we-are {
    padding: 64px 0;
  }
  #who-we-are h2 {
    font-size: 1.6rem;
  }
}

.services-section {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #2a2a2a;
}
.services-column {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
.services-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: hsl(286, 36%, 23%);
  margin-bottom: 16px;
}
.services-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3a3a3a;
  margin-bottom: 56px;
}
.service-list {
  margin: 0;
}
.service-row {
  padding: 28px 0;
  border-bottom: 1px solid #e2ddea;
}
.service-row:first-child {
  border-top: 1px solid #e2ddea;
}
.service-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.service-list dt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: hsl(280, 41%, 38%);
  margin: 0;
}
.service-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: hsl(286, 36%, 23%);
  white-space: nowrap;
}
.service-list dd {
  margin: 10px 0 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #3f3f3f;
}
@media (max-width: 576px) {
  .services-section {
    padding: 64px 0;
  }
  .services-section h2 {
    font-size: 1.6rem;
  }
  .service-price {
    font-size: 1rem;
  }
}

#advantages {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #2a2a2a;
}
#advantages .adv-column {
  max-width: 760px;
  margin: 0 auto;
}
#advantages h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(286, 36%, 23%);
  margin-bottom: 16px;
}
#advantages .lead-text {
  color: #444;
  margin-bottom: 56px;
  font-size: 1.05rem;
  line-height: 1.7;
}
#advantages .adv-card {
  background-color: #f8f9fa;
  border: 1px solid #e9e5ee;
  border-radius: 8px;
  padding: 28px 24px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#advantages .adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(75, 40, 105, 0.14);
  border-color: hsl(272, 59%, 68%);
}
#advantages .adv-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background-color: hsl(280, 41%, 38%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
#advantages .adv-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: hsl(286, 36%, 23%);
  margin-bottom: 10px;
}
#advantages .adv-card p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: #4a4a4a;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #advantages { padding: 64px 0; }
  #advantages .lead-text { margin-bottom: 40px; }
}

#reach-us {
  background-color: #f8f9fa;
  padding: 96px 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #2b2b2b;
}
#reach-us .reach-column {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}
#reach-us h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(286, 36%, 23%);
  margin-bottom: 16px;
  font-size: 2rem;
}
#reach-us .lead-text {
  color: #444;
  margin-bottom: 48px;
  font-size: 1.05rem;
  line-height: 1.7;
}
#reach-us .info-block {
  margin-bottom: 48px;
}
#reach-us .info-block dl {
  margin: 0;
}
#reach-us .info-block dt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsl(280, 41%, 38%);
  margin-top: 18px;
}
#reach-us .info-block dt:first-child {
  margin-top: 0;
}
#reach-us .info-block dd {
  margin-left: 0;
  margin-bottom: 0;
  color: #2b2b2b;
}
#reach-us a.contact-link {
  color: hsl(280, 41%, 38%);
  text-decoration: underline;
}
#reach-us a.contact-link:hover {
  color: hsl(272, 59%, 68%);
}
#reach-us .find-us-line {
  font-size: 0.95rem;
  color: #555;
  margin-top: 6px;
}
#reach-us .form-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(286, 36%, 23%);
  margin-bottom: 20px;
  font-size: 1.5rem;
}
#reach-us .form-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 6px;
}
#reach-us .form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px 14px;
  font-family: 'Source Sans Pro', sans-serif;
}
#reach-us .form-control:focus {
  border-color: hsl(272, 59%, 68%);
  box-shadow: 0 0 0 0.2rem hsla(272, 59%, 68%, 0.25);
}
#reach-us .btn-submit {
  background-color: hsl(280, 41%, 38%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
#reach-us .btn-submit:hover {
  background-color: hsl(286, 36%, 23%);
  color: #fff;
}
#reach-us hr.divider {
  border: none;
  border-top: 1px solid #dcdcdc;
  margin: 56px 0;
}

#disclaimer {
  background-color: #f8f9fa;
  padding: 96px 20px;
  font-family: 'Source Sans Pro', sans-serif;
  color: #2b2b2b;
}
#disclaimer .disclaimer-wrapper {
  max-width: 740px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #e2ddea;
  border-radius: 8px;
  padding: 48px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
#disclaimer .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: hsl(272, 59%, 68%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
#disclaimer .icon-circle i {
  color: #ffffff;
  font-size: 28px;
}
#disclaimer h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(286, 36%, 23%);
  margin-bottom: 20px;
  font-size: 1.75rem;
}
#disclaimer p {
  color: #333333;
  line-height: 1.75;
  font-size: 1.02rem;
  margin: 0;
}
@media (max-width: 576px) {
  #disclaimer {
    padding: 64px 12px;
  }
  #disclaimer .disclaimer-wrapper {
    padding: 32px 22px;
  }
}
