:root {
  --primary: #0d4675;
  --primary-dark: #0e3d65;
  --secondary: #59b7d6;
  --secondary-deep: #3a9bc0;
  --surface: #edf4fc;
  --surface-soft: #f4f9fd;
  --text-dark: #0d2f4a;
  --text-body: #4d6e85;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(19, 82, 134, 0.1);
  --shadow-card: 0 12px 30px rgba(19, 82, 134, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text-body);
  background: var(--surface);
}

.shell-90,
.shell-80 {
  width: 100%;
  margin-inline: auto;
}

.shell-90 {
  max-width: 90%;
}

.shell-80 {
  max-width: 80%;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.btn {
  border-radius: 10px;
  font-weight: 700;
  padding-top: 0.78rem;
  padding-bottom: 0.78rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);
  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
  box-shadow: 0 10px 24px rgba(19, 82, 134, 0.25);
}

.btn-outline-primary {
  --bs-btn-color: var(--primary);
  --bs-btn-border-color: rgba(19, 82, 134, 0.35);
  --bs-btn-hover-bg: var(--primary);
  --bs-btn-hover-border-color: var(--primary);
}

.section-space {
  padding: 88px 0;
}

.section-title,
.hero-title,
.cta-banner h2,
.appointment-card h3,
.info-card h3,
.service-card h3,
.testimonial-meta strong,
.process-step h3,
.site-footer h3 {
  font-family: "Outfit", sans-serif;
  color: var(--text-dark);
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.12;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-kicker {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-copy {
  max-width: 630px;
  font-size: 1rem;
  line-height: 1.8;
}

.section-heading {
  margin-bottom: 46px;
}

.topbar {
  background: #59B7D6;
}

.topbar-link,
.social-link {
  color: rgba(255, 255, 255, 0.94);
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.social-link {
  font-size: 0.95rem;
  transition: opacity 0.25s ease;
}

.social-link:hover {
  opacity: 0.75;
}

.home-navbar {
  box-shadow: 0 2px 12px rgba(19, 82, 134, 0.06);
}

.navbar-brand img {
  width: 122px;
}

.nav-link {
  position: relative;
  font-weight: 700;
  color: var(--text-dark);
  padding: 0.4rem 0.15rem;
  transition: color 0.25s ease;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.btn-nav {
  font-size: 0.95rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(19, 82, 134, 0.85) 0%, rgba(19, 82, 134, 0.62) 36%, rgba(15, 34, 59, 0.08) 62%),
    linear-gradient(90deg, rgba(89, 183, 214, 0.2) 0%, rgba(89, 183, 214, 0) 72%),
    url("../img/hero-care.jpeg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 44%, rgba(89, 183, 214, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.06));
}

.min-vh-hero {
  min-height: 650px;
}

.eyebrow-pill {
  display: inline-block;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary-deep);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  margin-bottom: 1.35rem;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.06;
  max-width: 700px;
  margin-bottom: 1.15rem;
}

.hero-text {
  color: rgba(255, 255, 255, 0.86);
  max-width: 590px;
  line-height: 1.85;
}

.hero-actions {
  margin-top: 2rem;
}

.trusted-strip {
  color: var(--white);
}

.trusted-avatars {
  display: flex;
  margin-right: 0.25rem;
}

.trusted-avatars img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.85);
  margin-left: -10px;
}

.trusted-avatars img:first-child {
  margin-left: 0;
}

.trusted-copy {
  font-size: 0.95rem;
}

.about-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.8) 100%);
}

.about-collage {
  position: relative;
  min-height: 490px;
  max-width: 540px;
}

.collage-main,
.collage-small {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.collage-main {
  width: 46%;
  height: 100%;
  min-height: 480px;
}

.collage-main img,
.collage-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-small {
  position: absolute;
  right: 0;
  width: 43%;
  height: 46%;
}

.collage-small.top {
  top: 0;
}

.collage-small.bottom {
  bottom: 0;
}

.experience-badge {
  position: absolute;
  left: 40%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(180deg, #59b7d6, #0d4675);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 18px 35px rgba(19, 82, 134, 0.3);
  text-align: center;
}

.experience-number {
  font-family: "Outfit", sans-serif;
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1;
}

.experience-copy {
  font-size: 0.86rem;
  max-width: 72px;
  line-height: 1.25;
}

.feature-checks {
  margin: 1.6rem 0 2rem;
  display: grid;
  gap: 0.95rem;
}

.about-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  max-width: 560px;
}

.feature-checks li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.feature-checks li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--primary);
  font-size: 1rem;
}

.choose-section {
  background: #f4f9fd;
}

.info-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(19, 82, 134, 0.08);
  /* border-top: 3px solid #59b7d6; */
  border-radius: var(--radius-md);
  padding: 1.7rem 1.45rem;
  height: 100%;
  box-shadow: var(--shadow-card);
}

.icon-wrap {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(89, 183, 214, 0.18);
  color: var(--primary);
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.65rem;
}

.info-card p {
  margin-bottom: 0;
  line-height: 1.75;
}

.services-section,
.appointment-section,
.cta-banner {
  position: relative;
  overflow: hidden;
}

.services-section {
  background: linear-gradient(90deg, #59B7D6 0%, #0d4675 100%);

}

.section-heading-light .section-title {
  color: var(--white);
}

.services-link {
  color: var(--white);
  font-weight: 700;
}

.services-link i {
  margin-left: 0.4rem;
}

.floating-squares::before,
.floating-squares::after,
.services-section::before,
.services-section::after,
.appointment-section::before,
.appointment-section::after,
.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.services-section::before,
.appointment-section::before,
.cta-banner::before {
  width: 72px;
  height: 72px;
  left: 26px;
  top: 34px;
}

.services-section::after,
.appointment-section::after,
.cta-banner::after {
  width: 58px;
  height: 58px;
  right: 24px;
  top: 26px;
}

.floating-squares::before {
  width: 64px;
  height: 64px;
  left: -10px;
  top: 110px;
}

.floating-squares::after {
  width: 76px;
  height: 76px;
  right: -16px;
  bottom: 52px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  /* border-top: 3px solid #59b7d6; */
  overflow: hidden;
  height: 100%;
  box-shadow: 0 18px 36px rgba(19, 82, 134, 0.16);
}

.service-card img {
  width: 100%;
  height: 176px;
  object-fit: cover;
}

.service-card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.service-label {
  display: inline-block;
  color: #7f96ac;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-size: 1.34rem;
  margin-bottom: 0.55rem;
}

.service-card p {
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.service-card a {
  color: var(--primary);
  font-weight: 700;
}

.process-section {
  background: var(--surface);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  position: relative;
}

.process-row::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 23px;
  border-top: 1px dashed rgba(19, 82, 134, 0.25);
}

.process-step {
  position: relative;
  text-align: center;
}

.step-number {
  width: 46px;
  height: 46px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 18px rgba(19, 82, 134, 0.22);
}

.process-step h3 {
  font-size: 1.08rem;
  margin-bottom: 0.55rem;
}

.process-step p {
  margin-bottom: 0;
  line-height: 1.7;
}

.appointment-section {
  background:
    linear-gradient(90deg, rgba(19, 82, 134, 0.9) 0%, rgba(89, 183, 214, 0.75) 100%),
    url("../img/appointment-bg.jpeg") left center/contain no-repeat;
}

.appointment-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  /* border-top: 3px solid #59b7d6; */
  padding: 1.6rem;
  box-shadow: 0 22px 44px rgba(19, 82, 134, 0.18);
}

.appointment-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.appointment-card .form-label {
  color: var(--text-dark);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.form-control,
.form-select {
  border-radius: 6px;
  border-color: #d8e2ef;
  color: var(--text-dark);
  padding: 0.82rem 0.9rem;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(19, 82, 134, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(19, 82, 134, 0.12);
}

.testimonials-section {
  background: linear-gradient(180deg, #edf4fc 0%, #e6f1fa 100%);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  /* border-top: 3px solid #59b7d6; */
  padding: 1.6rem 1.35rem;
  height: 100%;
  box-shadow: var(--shadow-card);
}

.testimonial-quote {
  font-style: italic;
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.testimonial-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(19, 82, 134, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-meta span {
  display: block;
  font-size: 0.86rem;
}

.testimonial-stars {
  color: var(--primary);
  white-space: nowrap;
  font-size: 0.82rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1.5rem;
}

.testimonial-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(19, 82, 134, 0.2);
}

.testimonial-dots .active {
  background: var(--primary);
}

.cta-banner {
  background: linear-gradient(135deg, #59B7D6, #0d4675);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 3.3rem 1.5rem;
  box-shadow: 0 28px 55px rgba(19, 82, 134, 0.28);
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  max-width: 680px;
  margin: 0 auto 1.6rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.site-footer {
  background: linear-gradient(135deg, #59B7D6, #0d4675);
  color: rgba(255, 255, 255, 0.88);
  padding-top: 60px;
}

.footer-main {
  padding-bottom: 30px;
}

.footer-main > [class*="col-"] {
  min-width: 0;
}

.footer-brand img {
  width: 118px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.8rem;
}

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  min-width: 0;
}

.footer-contact i {
  flex: 0 0 auto;
}

.footer-contact a,
.footer-contact li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.newsletter-form .form-control {
  border: 0;
  min-width: 0;
}

.newsletter-form .input-group {
  max-width: 100%;
  flex-wrap: nowrap;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  font-size: 0.88rem;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 100px;
  color: var(--white);
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(18 77 123) 0%, rgb(89 183 214) 36%, rgba(15, 34, 59, .08) 62%);
}

.inner-hero-about {
  background: url("../img/hero-care.jpeg") center/cover no-repeat;
}

.inner-hero-services {
  background: url("../img/service-companion.jpeg") center/cover no-repeat;
}

.inner-hero-areas {
  background: url("../img/about-walk.jpeg") center/cover no-repeat;
}

.inner-hero-contact {
  background: url("../img/service-specialized.jpeg") center/cover no-repeat;
}

.inner-hero-content {
  position: relative;
  max-width: 720px;
}

.inner-hero-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.35rem, 4.6vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.inner-hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.85;
}

.breadcrumb-shell {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
}

.breadcrumb-shell a {
  color: var(--white);
}

.breadcrumb-shell .separator {
  opacity: 0.7;
}

.stat-card,
.content-panel,
.image-panel,
.team-card,
.coverage-card,
.faq-card,
.contact-card,
.coverage-panel {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.stat-card {
  height: 100%;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(19, 82, 134, 0.08);
  /* border-top: 3px solid #59b7d6; */
}

.stat-card strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}

.stat-card span {
  display: block;
  line-height: 1.75;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.image-panel {
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.content-panel {
  padding: 2rem;
}

.timeline-list {
  display: grid;
  gap: 1.2rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(89, 183, 214, 0.18);
  color: var(--primary);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.timeline-item h3,
.team-card h3,
.coverage-card h3,
.faq-card h3,
.contact-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}

.timeline-item p,
.team-card p,
.coverage-card p,
.faq-card p,
.contact-card span {
  margin-bottom: 0;
  line-height: 1.75;
}

.team-card,
.coverage-card,
.faq-card,
.contact-card {
  height: 100%;
  padding: 1.6rem;
  border: 1px solid rgba(19, 82, 134, 0.08);
  min-width: 0;
  overflow: hidden;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 4px solid rgba(89, 183, 214, 0.22);
}

.service-card-lg .service-card-body {
  padding-bottom: 1.35rem;
}

.mini-checks {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.mini-checks li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--text-dark);
}

.mini-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary-deep);
}

.coverage-panel {
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}

.coverage-badge {
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(135deg, rgba(89, 183, 214, 0.14), rgba(19, 82, 134, 0.07));
}

.coverage-badge strong,
.coverage-tag,
.contact-card p,
.contact-card a {
  color: var(--text-dark);
}

.coverage-badge strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.08rem;
}

.coverage-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(89, 183, 214, 0.16);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-card p {
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.contact-card p,
.contact-card a,
.contact-card span {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-side-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-side-list i {
  margin-right: 0.55rem;
}

@media (max-width: 1199.98px) {
  .min-vh-hero {
    min-height: 590px;
  }

  .process-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-row::before {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .section-space {
    padding: 72px 0;
  }

  .inner-hero {
    padding: 96px 0 84px;
  }

  .hero-section {
    background-position: 72% center;
  }

  .home-navbar .navbar-collapse {
    padding-top: 1rem;
  }

  .btn-nav {
    width: 100%;
    text-align: center;
  }

  .nav-link::after {
    display: none;
  }

  .about-collage {
    margin: 0 auto;
  }

  .appointment-section {
    background:
      linear-gradient(90deg, rgba(19, 82, 134, 0.94) 0%, rgba(89, 183, 214, 0.8) 100%),
      url("../img/appointment-bg.jpeg") center/cover no-repeat;
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding: 62px 0;
  }

  .shell-90,
  .shell-80 {
    max-width: calc(100% - 24px);
  }

  .inner-hero {
    padding: 82px 0 72px;
  }

  .inner-hero-title {
    font-size: 2.15rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .min-vh-hero {
    min-height: 540px;
    padding: 90px 0 80px;
  }

  .about-collage {
    min-height: 420px;
  }

  .experience-badge {
    width: 110px;
    height: 110px;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .testimonial-meta {
    grid-template-columns: auto 1fr;
  }

  .testimonial-stars {
    grid-column: 1 / -1;
    padding-left: 52px;
  }

  .content-panel,
  .team-card,
  .coverage-card,
  .faq-card,
  .contact-card,
  .coverage-panel {
    padding: 1.35rem;
  }

  .footer-bottom {
    align-items: flex-start;
    text-align: left;
  }

  .footer-policy-links {
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .topbar-link {
    font-size: 0.82rem;
  }

  .navbar-brand img {
    width: 102px;
  }

  .hero-text,
  .section-copy,
  .info-card p,
  .service-card p,
  .process-step p,
  .testimonial-quote,
  .cta-banner p {
    font-size: 0.95rem;
  }

  .about-collage {
    min-height: 370px;
  }

  .collage-main {
    min-height: 370px;
  }

  .experience-badge {
    left: 45%;
    width: 96px;
    height: 96px;
  }

  .experience-number {
    font-size: 1.9rem;
  }

  .appointment-card {
    padding: 1.3rem;
  }
}
