:root{
      --bg: #ffffff;
      --hero-bg: #eaf6ff;
      --text: #222;
      --muted: #7a7a7a;
      --cta: #053158;
      --cta-hover: #042846;
      --container: 1200px;
      --soft-2:#eef6ff; /* you use this but hadn’t defined it */
      --ink:#222;
      --border:#e6edf5;
      --navy:#08335f;
      --shadow: 0 12px 34px rgba(0,0,0,.08);
      --radius: 18px;
      --radius-lg: 22px;
    }

    *{ box-sizing: border-box; }
    body{
      margin: 0;
      font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--text);
      background: var(--bg);
    }

    /* Desktop hero */
    .hero{
      background: var(--hero-bg);
      padding: 64px 0;
    }

    .container{
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 28px;
    }

    .hero-grid{
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      align-items: center;
      gap: 64px;
    }

    .hero h1{
      margin: 0 0 22px;
      font-size: 60px;
      line-height: 1.05;
      letter-spacing: -0.02em;
      font-weight: 600;
      color: #2a2a2a;
    }

    .hero p{
      margin: 0 0 34px;
      font-size: 20px;
      line-height: 1.5;
      color: var(--muted);
      max-width: 40ch;
    }

    .cta{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 34px;
      border-radius: 999px;
      background: var(--cta);
      color: #fff;
      text-decoration: none;
      font-size: 22px;
      font-weight: 600;
      box-shadow: 0 14px 34px rgba(5, 49, 88, 0.18);
      transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
    }

    .cta:hover{
      background: var(--cta-hover);
      transform: translateY(-1px);
      box-shadow: 0 18px 44px rgba(5, 49, 88, 0.22);
    }

    .photo{
      width: 100%;
      border-radius: var(--radius);
      overflow: hidden;
      background: #dfeaf2;
      box-shadow: 0 18px 50px rgba(0,0,0,0.10);
    }

    .photo img{
      width: 100%;
      height: 100%;
      aspect-ratio: 3 / 3;
      object-fit: cover;
      display: block;
    }

    /* Optional: keep it "desktop only" tidy */
    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      .hero h1{ font-size: 46px; }
      .hero p{ font-size: 18px; }
    }

    /* Top stats band */

.stats-wrap{
  padding: 24px 0 6px;
}

.stats{
  background: var(--soft-2);
  border-radius: 22px;
  padding: 22px 18px;
  margin: 0;
}

/* Each stat card */
.stat{
  background: transparent;
  border-radius: 16px;
  padding: 14px 14px;
}

/* Typography */
.stat .num{
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.05;
  color: #2a2a2a;
}
.stat .label{
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

/* Mobile: horizontal scroll, feels premium */
@media (max-width: 767.98px){
  .stats{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 14px;
  }

  .stat{
    scroll-snap-align: start;
  }

  /* Optional: nicer scrollbar */
  .stats::-webkit-scrollbar{ height: 8px; }
  .stats::-webkit-scrollbar-thumb{
    background: rgba(0,0,0,.14);
    border-radius: 999px;
  }
}

/* Section typography similar to screenshot */
  .section{
    padding: 44px 0 56px;
    background:#fff;
  }
  .section-title{
    margin:0;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  .section-subtitle{
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 16px;
  }

  /* Desktop service grid exactly like screenshot */
  .services-grid{
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
  .svc-card{
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 18px 16px;
    background:#fff;
    min-height: 120px;
  }
  .svc-title{
    margin:0;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing:-0.01em;
  }
  .svc-desc{
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
  }

  @media (max-width: 1200px){
    .services-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  /* Mobile accordion styling to match cards */
  .services-accordion .accordion-item{
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow:hidden;
    margin-bottom: 12px;
    background:#fff;
  }
  .services-accordion .accordion-item:not(:first-of-type){
    border-top: 1px solid var(--border);
  }
  .services-accordion .accordion-button{
    font-weight: 800;
    color: var(--navy);
    background:#fff;
    box-shadow:none;
    padding: 16px 16px;
  }
  .services-accordion .accordion-button:not(.collapsed){
    background:#fff;
    color: var(--navy);
  }
  .services-accordion .accordion-body{
    color: var(--muted);
    padding: 0 16px 16px;
    font-size: 14px;
    line-height: 1.45;
  }

  /* About band like screenshot */
  .about-band{
    background: var(--soft-2);
    padding: 56px 0;
  }
  .about-title{
    margin:0;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--navy);
    font-size: 44px;
    line-height: 1.05;
  }
  .about-title span{
    display:inline-block;
    margin-top: 6px;
    color: var(--navy);
  }
  .about-text{
    margin: 18px 0 0;
    color: #334155;
    font-size: 15px;
    line-height: 1.6;
    max-width: 70ch;
  }
  .about-photo{
    border-radius: var(--radius-lg);
    overflow:hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(8,51,95,.10);
    background:#fff;
  }
  .about-photo img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
    aspect-ratio: 3 / 3;
  }

  @media (max-width: 576px){
    .section-title{ font-size: 32px; }
    .about-title{ font-size: 38px; }
  }

/* ===== Testimonials ===== */
.testimonials-section{
  background: #fff;
  padding: 56px 0 40px;
}

.reviews-carousel{
  margin-top: 28px;
  position: relative;
  padding-bottom: 46px;
}

.review-card{
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  background: #fff;
  padding: 28px 28px 24px;
  height: 100%;
  min-height: 240px;
}

.review-text{
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  color: #2a2a2a;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}

.review-meta{
  font-size: 18px;
  line-height: 1.35;
  color: #3b3b3b;
}

.review-control{
  width: 42px;
  height: 42px;
  top: auto;
  bottom: 0;
  background: #053158;
  border-radius: 999px;
  opacity: 1;
}

.carousel-control-prev.review-control{
  left: auto;
  right: 58px;
}

.carousel-control-next.review-control{
  right: 0;
}

.review-control .carousel-control-prev-icon,
.review-control .carousel-control-next-icon{
  width: 18px;
  height: 18px;
}

.review-indicators{
  margin-bottom: 0;
  justify-content: flex-start;
  left: 0;
  right: auto;
  bottom: 8px;
}

.review-indicators [data-bs-target]{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #053158;
  opacity: .25;
  border: 0;
  margin: 0 5px;
}

.review-indicators .active{
  opacity: 1;
}

/* ===== Appointment ===== */
.appointment-section{
  background: var(--soft-2);
  padding: 56px 0 64px;
}

.appointment-copy{
  padding-top: 18px;
}

.appointment-title{
  margin: 0;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #2a2a2a;
}

.appointment-subtitle{
  margin: 14px 0 0;
  font-size: 22px;
  line-height: 1.4;
  color: #4f4f4f;
  max-width: 18ch;
}

.appointment-points{
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.appointment-point{
  display: flex;
  align-items: center;
  gap: 14px;
}

.point-icon{
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,.03);
}

.point-text{
  font-size: 18px;
  line-height: 1.35;
  color: #1f1f1f;
}

.appointment-card{
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
}

.appointment-input{
  height: 64px;
  border-radius: 16px;
  border: 1px solid #e2e2e2;
  padding: 0 20px;
  font-size: 17px;
  color: #222;
  box-shadow: none;
}

.appointment-input:focus{
  border-color: #053158;
  box-shadow: 0 0 0 0.15rem rgba(5, 49, 88, 0.08);
}

.appointment-textarea{
  height: auto;
  min-height: 170px;
  padding-top: 18px;
  resize: none;
}

.appointment-btn{
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: #053158;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 24px;
  transition: background .2s ease, transform .2s ease;
}

.appointment-btn:hover{
  background: #042846;
  transform: translateY(-1px);
}

/* ===== Responsive ===== */
@media (max-width: 991.98px){
  .appointment-title{
    font-size: 44px;
  }

  .appointment-subtitle{
    font-size: 18px;
    max-width: 100%;
  }

  .review-text{
    font-size: 19px;
  }

  .review-meta{
    font-size: 16px;
  }

  .appointment-card{
    padding: 26px;
  }
}

@media (max-width: 767.98px){
  .testimonials-section{
    padding: 44px 0 28px;
  }

  .reviews-carousel{
    margin-top: 20px;
    padding-bottom: 54px;
  }

  .carousel-item .row{
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-left: 0;
    margin-right: 0;
    gap: 14px;
  }

  .carousel-item .col-md-4{
    flex: 0 0 86%;
    max-width: 86%;
    padding-left: 0;
    padding-right: 0;
  }

  .review-card{
    min-height: 220px;
    padding: 22px 20px;
  }

  .review-text{
    font-size: 18px;
    margin-bottom: 20px;
  }

  .review-meta{
    font-size: 16px;
  }

  .review-indicators{
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    right: auto;
  }

  .carousel-control-prev.review-control{
    left: 0;
    right: auto;
  }

  .carousel-control-next.review-control{
    right: 0;
  }

  .appointment-section{
    padding: 44px 0 50px;
  }

  .appointment-copy{
    padding-top: 0;
  }

  .appointment-title{
    font-size: 38px;
  }

  .appointment-subtitle{
    font-size: 17px;
    line-height: 1.45;
  }

  .appointment-points{
    margin-top: 28px;
    gap: 16px;
  }

  .point-icon{
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 20px;
  }

  .point-text{
    font-size: 16px;
  }

  .appointment-card{
    padding: 18px;
    border-radius: 22px;
  }

  .appointment-input{
    height: 56px;
    font-size: 16px;
    border-radius: 14px;
  }

  .appointment-textarea{
    min-height: 150px;
  }

  .appointment-btn{
    font-size: 18px;
    padding: 16px 20px;
  }
}



/**,*/
/**::before,*/
/**::after {*/
/*  box-sizing: border-box;*/
/*}*/
/*  html, body {*/
/*  font-family: "DM Sans", sans-serif !important;*/
/*}*/
/*body {*/
/*  margin: 0;*/
/*  color: var(--text-main);*/
/*  background-color: var(--bg);*/
/*  line-height: 1.6;*/
/*}*/
/*@media (min-width: 1024px) {*/
/*.container {*/
/*  margin: 0 150px !important;*/
/*}*/
/*  }*/

/*a {*/
/*  color: inherit;*/
/*  text-decoration: none;*/
/*}*/

/*img {*/
/*  max-width: 100%;*/
/*  display: block;*/
/*}*/

/*.nav {*/
/*  position: relative;*/
/*  z-index: 1;*/
/*  margin: 0 auto;*/
/*  padding: 1.5rem 1.5rem 0.5rem;*/
/*  display: flex;*/
/*}*/

/*.logo-img {*/
/*  width: 45px;*/
/*  height: 54px;*/
/*  flex-shrink: 0;*/
/*  filter: drop-shadow(0 0 8px rgba(79, 195, 247, 0.3));*/
/*}*/

/*.logo-text {*/
/*  display: inline-block;*/
/*}*/

/*.nav-links {*/
/*  display: flex;*/
/*  gap: 1.5rem;*/
/*  list-style: none;*/
/*  font-size: 0.95rem;*/
/*}*/

/*.nav-links a {*/
/*  padding: 0.4rem 0.2rem;*/
/*  border-bottom: 2px solid transparent;*/
/*  color: var(--text-main);*/
/*}*/

/*.nav-links a:hover {*/
/*  border-bottom-color: var(--pastel-pink-dark);*/
/*}*/

/*.btn-primary {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  padding: 0.6rem 1.4rem;*/
/*  border-radius: 999px;*/
/*  background-color: #003059;*/
/*  color: #fff;*/
/*  font-weight: 500;*/
/*  border: none;*/
/*  cursor: pointer;*/
/*}*/

/*.btn-primary:hover {*/
/*  background-color: #2c5b7a;*/
/*}*/

/*.btn-lg {*/
/*  padding: 0.85rem 1.8rem;*/
/*  font-size: 1rem;*/
/*  margin-top: 1.5rem;*/
/*}*/

/*.btn-full {*/
/*  width: 100%;*/
/*  margin-top: 0.75rem;*/
/*}*/

/*.form .btn-primary {*/
/*  background-color: var(--pastel-green);*/
/*  color: #333;*/
/*  box-shadow: 0 10px 25px rgba(184, 230, 184, 0.4);*/
/*}*/

/*.form .btn-primary:hover {*/
/*  background-color: var(--pastel-green-dark);*/
/*  color: #222;*/
/*  box-shadow: 0 14px 30px rgba(184, 230, 184, 0.5);*/
/*}*/

/*@keyframes gentle-float {*/
/*  0%, 100% {*/
/*    transform: translateY(0);*/
/*  }*/
/*  50% {*/
/*    transform: translateY(-8px);*/
/*  }*/
/*}*/
/*.atf {*/
/*  margin: 0;*/
/*  background-color: #EBF6FF;*/
/*  display: flex;*/
/*  width: 100%;*/
/*  text-align: center;*/
/*}*/

/*.atf{*/
/*  background: #EBF6FF;*/
/*  display: flex;*/
/*  gap: 24px;*/
/*  padding: 48px 16px 16px; !* this gives breathing room *!*/
/*  align-items: center;*/
/*}*/

/*!* Make both children behave *!*/
/*.atf > div{*/
/*  flex: 1;*/
/*  min-width: 0;*/
/*}*/
/*@media (max-width: 720px){*/
/*  .atf{*/
/*    flex-direction: column;*/
/*    padding: 28px 16px 12px;*/
/*  }*/
/*}*/

/*.atf img {*/
/*  height: 300px;*/
/*}*/
/*.atf h1 {*/
/*  font-size: 50px;*/
/*  color: #333;*/
/*  line-height: normal;*/
/*  margin: 0;*/
/*  font-weight: bold;*/
/*}*/

/*.atf p {*/
/*  color: #808080;*/
/*}*/

/*.section {*/
/*  padding: 4rem 1.5rem;*/
/*}*/

/*.section-light {*/
/*  background-color: #ffffff;*/
/*}*/

/*.section-color {*/
/*  background: linear-gradient(135deg, var(--pastel-blue-light), #e8f4f8);*/
/*  color: var(--text-main);*/
/*}*/

/*.section-heading h2 {*/
/*  color: #333333;*/
/*  font-size: 40px;*/
/*  margin-bottom: 0;*/
/*}*/

/*.section-heading p {*/
/*  margin: -6px 0 15px 0;*/
/*  color: #808080;*/
/*  font-size: 18px;*/
/*  font-weight: 200;*/
/*}*/

/*.new-section {*/
/*  margin-top: 50px;*/
/*}*/

/*.cards-grid {*/
/*  !*max-width: 1100px;*!*/
/*  margin: 0 auto;*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));*/
/*  gap: 1.5rem;*/
/*}*/

/*.card {*/
/*  background-color: #fff;*/
/*  border-radius: 1rem;*/
/*  padding: 1.5rem;*/
/*  border: 1px solid var(--border-soft);*/
/*  box-shadow: 0 10px 30px rgba(31, 41, 55, 0.04);*/
/*  transition: transform 0.2s ease, box-shadow 0.2s ease;*/
/*}*/

/*.card:hover {*/
/*  transform: translateY(-4px);*/
/*  box-shadow: 0 15px 40px rgba(31, 41, 55, 0.08);*/
/*}*/

/*.card:nth-child(1) {*/
/*  border-top: 4px solid var(--pastel-blue);*/
/*}*/

/*.card:nth-child(2) {*/
/*  border-top: 4px solid var(--pastel-pink);*/
/*}*/

/*.card:nth-child(3) {*/
/*  border-top: 4px solid var(--pastel-green);*/
/*}*/

/*.card:nth-child(4) {*/
/*  border-top: 4px solid var(--pastel-blue);*/
/*}*/

/*.card h3 {*/
/*  margin-top: 0;*/
/*  margin-bottom: 0.5rem;*/
/*}*/

/*.card:nth-child(1) h3,*/
/*.card:nth-child(4) h3 {*/
/*  color: #2c5f7a;*/
/*}*/

/*.card:nth-child(2) h3 {*/
/*  color: #8b3a5c;*/
/*}*/

/*.card:nth-child(3) h3 {*/
/*  color: #4a7c59;*/
/*}*/

/*.card p {*/
/*  margin: 0;*/
/*  color: var(--text-muted);*/
/*}*/

/*!* Services carousel *!*/

/*.services-carousel {*/
/*  overflow-x: auto;*/
/*  !*max-width: 1100px;*!*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 1rem;*/
/*  margin-bottom: 15px;*/
/*}*/

/*.services-track {*/
/*  position: relative;*/
/*  flex: 1;*/
/*  display: flex;*/
/*  gap: 1rem;*/
/*  overflow-x: auto;*/
/*  scroll-snap-type: x mandatory;*/
/*  scroll-behavior: smooth;*/
/*  padding: 0.25rem 0.5rem 0.75rem;*/
/*}*/

/*.services-track::-webkit-scrollbar {*/
/*  height: 6px;*/
/*}*/

/*.services-track::-webkit-scrollbar-track {*/
/*  background: transparent;*/
/*}*/

/*.services-track::-webkit-scrollbar-thumb {*/
/*  background: rgba(148, 163, 184, 0.6);*/
/*  border-radius: 999px;*/
/*}*/

/*.service-card {*/
/*  !*min-width: 260px;*!*/
/*  !*max-width: 280px;*!*/
/*  scroll-snap-align: start;*/
/*  background-color: #fff;*/
/*  border-radius: 1rem;*/
/*  padding: 1.4rem 1.4rem 1.5rem;*/
/*  border: 1px solid #E6E6E6;*/
/*  flex-shrink: 0;*/
/*}*/

/*.service-card h3 {*/
/*  margin: 0 0 10px 0;*/
/*  font-size: 24px;*/
/*  color: #003059;*/
/*  font-weight: 600;*/
/*  line-height: normal;*/
/*}*/

/*.service-card p {*/
/*  margin: 0;*/
/*  font-size: 16px;*/
/*  font-weight: 300;*/
/*  color: #808080;*/
/*  line-height: normal;*/
/*}*/

/*.testimonials-grid {*/
/*  display: flex;*/
/*  gap: 1.5rem;*/
/*  overflow-x: auto;*/
/*  scroll-snap-type: x mandatory;*/
/*  -webkit-overflow-scrolling: touch;*/
/*  padding-bottom: 1rem;*/
/*}*/

/*.testimonials-grid::-webkit-scrollbar {*/
/*  display: none;*/
/*}*/

/*.testimonial {*/
/*  flex: 0 0 100%;*/
/*  max-width: 100%;*/
/*  scroll-snap-align: center;*/
/*  background: #ffffff;*/
/*  border-radius: 14px;*/
/*  padding: 2rem;*/
/*  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);*/
/*}*/

/*.testimonial blockquote {*/
/*  font-size: 1.05rem;*/
/*  line-height: 1.7;*/
/*  color: #333;*/
/*  margin-bottom: 1.2rem;*/
/*}*/

/*.testimonial figcaption {*/
/*  font-weight: 500;*/
/*  color: #666;*/
/*  font-size: 0.95rem;*/
/*}*/

/*!* DESKTOP: SHOW 2–3 CARDS *!*/
/*@media (min-width: 768px) {*/
/*  .testimonial {*/
/*    flex: 0 0 70%;*/
/*  }*/
/*}*/

/*@media (min-width: 1024px) {*/
/*  .testimonial {*/
/*    flex: 0 0 32%;*/
/*  }*/
/*}*/

/*.testimonial:nth-child(1) {*/
/*  border-color: var(--pastel-blue);*/
/*  background: linear-gradient(to bottom, rgba(200, 235, 240, 0.1), rgba(255, 255, 255, 0.95));*/
/*}*/

/*.testimonial:nth-child(2) {*/
/*  border-color: var(--pastel-pink);*/
/*  background: linear-gradient(to bottom, rgba(255, 214, 232, 0.1), rgba(255, 255, 255, 0.95));*/
/*}*/

/*.testimonial:nth-child(3) {*/
/*  border-color: var(--pastel-green);*/
/*  background: linear-gradient(to bottom, rgba(216, 248, 216, 0.1), rgba(255, 255, 255, 0.95));*/
/*}*/

/*.testimonial blockquote {*/
/*  margin: 0 0 0.75rem;*/
/*  font-style: italic;*/
/*  color: var(--text-main);*/
/*}*/

/*.testimonial figcaption {*/
/*  font-weight: 500;*/
/*  color: #2c5f7a;*/
/*}*/

/*.testimonial:nth-child(1) figcaption {*/
/*  color: #2c5f7a;*/
/*}*/

/*.testimonial:nth-child(2) figcaption {*/
/*  color: #8b3a5c;*/
/*}*/

/*.testimonial:nth-child(3) figcaption {*/
/*  color: #4a7c59;*/
/*}*/

/*.form-wrapper {*/
/*  !*max-width: 700px;*!*/
/*  margin: 0 auto;*/
/*}*/

/*.form {*/
/*  background: linear-gradient(to bottom, var(--pastel-green-light), #fff);*/
/*  border-radius: 1.2rem;*/
/*  padding: 1.8rem;*/
/*  border: 2px solid var(--pastel-green);*/
/*  box-shadow: 0 12px 40px rgba(184, 230, 184, 0.2);*/
/*}*/

/*.form-row {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));*/
/*  gap: 1rem;*/
/*}*/

/*.form-field {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  margin-bottom: 1rem;*/
/*}*/

/*.form-field label {*/
/*  font-size: 0.9rem;*/
/*  margin-bottom: 0.4rem;*/
/*  color: #444;*/
/*}*/

/*.form-field input,*/
/*.form-field select,*/
/*.form-field textarea {*/
/*  border-radius: 0.6rem;*/
/*  border: 1px solid var(--border-soft);*/
/*  padding: 0.55rem 0.7rem;*/
/*  font-size: 0.95rem;*/
/*  font-family: inherit;*/
/*  color: var(--text-main);*/
/*  background-color: #fff;*/
/*  outline: none;*/
/*  transition: border-color 0.15s ease, box-shadow 0.15s ease;*/
/*}*/

/*.form-field input:focus,*/
/*.form-field select:focus,*/
/*.form-field textarea:focus {*/
/*  border-color: var(--pastel-green);*/
/*  box-shadow: 0 0 0 2px var(--pastel-green-light);*/
/*}*/

/*.form-message {*/
/*  margin-top: 0.75rem;*/
/*  font-size: 0.9rem;*/
/*}*/

/*.form-message.success {*/
/*  color: #166534;*/
/*}*/

/*.form-message.error {*/
/*  color: #b91c1c;*/
/*}*/

/*.footer {*/
/*  border-top: 2px solid var(--pastel-green);*/
/*  padding: 1.5rem 1.5rem 2rem;*/
/*  background-color: var(--pastel-green-light);*/
/*}*/

/*.footer-content {*/
/*  !*max-width: 1100px;*!*/
/*  margin: 0 auto;*/
/*  font-size: 0.85rem;*/
/*  color: #333;*/
/*}*/

/*@media (max-width: 720px) {*/
/*  .nav {*/
/*    flex-direction: column;*/
/*    align-items: flex-start;*/
/*    gap: 0.75rem;*/
/*  }*/

/*  .nav-links {*/
/*    flex-wrap: wrap;*/
/*    gap: 0.75rem;*/
/*  }*/
/*}*/

/*.about-content {*/
/*  display: flex;*/
/*  margin-top: 25px;*/
/*}*/
/*.about-content p {*/
/*  margin-left: 3rem;*/
/*  line-height: 28px;*/
/*  text-align: left;*/
/*  font-size: 17px;*/
/*}*/
/*.doc-img {*/
/*  height: 30%;*/
/*  width: 30%;*/
/*}*/

/*#testimonials {*/
/*  padding: 4rem 1.5rem;*/
/*  overflow: hidden;*/
/*}*/

/*.social-proof {*/
/*  flex-wrap: wrap;*/
/*  width: 100vw;*/
/*  background: #EBF6FF;*/
/*  display: flex;*/
/*  border-radius: 24px;*/
/*  padding: 20px;*/
/*  justify-content: space-around;*/
/*}*/

/*.social-proof p {*/
/*  color: #003059;*/
/*  font-size: 50px;*/
/*  font-weight: bold;*/
/*  margin: 0;*/
/*}*/

/*.social-proof span {*/
/*  font-size: 16px;*/
/*  color: #333333;*/
/*  font-weight: normal;*/
/*}*/

/*@media (max-width: 720px) {*/
/*  .atf {*/
/*    flex-direction: column;*/
/*    width: 100vw;*/
/*    padding: 28px 16px 12px;*/
/*    gap: 16px;*/
/*  }*/

/*  .atf h1 {*/
/*    font-size: 34px;*/
/*    line-height: 1.15;*/
/*  }*/

/*  .atf img {*/
/*    width: 100%;*/
/*    !*max-width: 320px;*!*/
/*    height: auto;        !* IMPORTANT: remove fixed height *!*/
/*    margin: 0 auto;*/
/*    border-radius: 28px;*/
/*    object-fit: cover;*/
/*  }*/

/*  .atf p {*/
/*    font-size: 15px;*/
/*    padding: 0 8px;*/
/*  }*/
/*}*/