:root {
  --brand-dark: #e05699;
  --brand-light: rgba(235, 77, 128, 0.05);
  --brand-accent: #e05699;
}
body {
  background-color: #fdfbfd;
}
.dr-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(106, 27, 77, 0.04);
  height: 100%;
  border: 1px solid rgba(106, 27, 77, 0.05);
}
.dr-card-title {
  color: var(--brand-dark);
  font-family: var(--fl-font-family);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(106, 27, 77, 0.1);
  padding-bottom: 15px;
}
.dr-stat-icon {
  color: var(--brand-dark);
  background: var(--brand-light);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.4rem;
}
.dr-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dr-check-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  color: #555;
}
.dr-check-list li::before {
  content: '\f058'; /* FontAwesome check-circle */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--brand-dark);
  font-size: 1.1rem;
}
.dr-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dr-expertise-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #555;
  background: var(--brand-light);
  padding: 10px 15px;
  border-radius: 8px;
}
.dr-expertise-list li i {
  color: var(--brand-dark);
  margin-right: 12px;
}
.dr-timeline {
  position: relative;
  padding-left: 25px;
}
.dr-timeline::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(106, 27, 77, 0.15);
}
.dr-timeline-item {
  position: relative;
  margin-bottom: 25px;
}
.dr-timeline-item::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-dark);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--brand-dark);
}
.dr-timeline-year {
  font-weight: 600;
  color: var(--brand-dark);
  font-size: 0.95rem;
  margin-bottom: 5px;
}
.dr-timeline-title {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
}
.dr-btn-primary {
  background: var(--brand-dark);
  border: 1px solid var(--brand-dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s;
}
.dr-btn-primary:hover {
  background: #511239;
  color: #fff;
}
.dr-btn-outline {
  background: #ffffff;
  border: 1px solid var(--brand-dark);
  color: var(--brand-dark);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s;
}
.dr-btn-outline:hover {
  background: var(--brand-light);
  color: var(--brand-dark);
}
.dr-icon-box {
  text-align: center;
  padding: 20px;
}
.dr-icon-box i {
  font-size: 2rem;
  color: var(--brand-dark);
  margin-bottom: 15px;
}
.dr-icon-box h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}
.dr-testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(106, 27, 77, 0.04);
  border: 1px solid rgba(106, 27, 77, 0.05);
  height: 100%;
}
.dr-quote-icon {
  color: rgba(235, 77, 128, 0.1);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: -15px;
}
.dr-cta-box {
  background: var(--brand-light);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 60px;
}

@media (max-width: 991.98px) {
  .dr-hero-row {
    padding: 24px 20px !important;
  }
}

@media (max-width: 767.98px) {
  .dr-cta-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
  }
  .dr-cta-box .dr-btn-primary,
  .dr-cta-box .dr-btn-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .dr-hero-row .d-flex.flex-wrap {
    flex-direction: column;
    width: 100%;
  }
  .dr-hero-row .d-flex.flex-wrap a {
    width: 100%;
    justify-content: center;
  }
  .dr-hero-row .dr-stat-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.1rem !important;
    border-radius: 8px !important;
  }
  .dr-hero-row .fw-bold {
    font-size: 0.95rem !important;
  }
  .dr-hero-row .text-muted {
    font-size: 0.72rem !important;
  }
  .dr-hero-row .gap-3 {
    gap: 10px !important;
  }
  .dr-expertise-list li {
    width: 100% !important;
  }
}
