.about-growth-section {
  background: #f8fafc;
}

.section-tag {
  background: #fff;
  border: 2px solid var(--bs-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
}

.stats-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stat-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--bs-accent);
  font-weight: 700;
}

.feature-box {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.about-bottom-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.custom-tick {
  color: #8d0b41;
  font-size: 22px;
  font-weight: 700;
  margin-right: 12px;
}

.custom-tick::before {
  content: "✓";
}

.services-showcase {
  background: #fff;
}

.service-intro {
  max-width: 850px;
}

.service-card {
  height: 100%;
  padding: 30px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #eee;
  transition: 0.4s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #8d0b41;
  box-shadow: 0 20px 40px rgba(141, 11, 65, 0.12);
}

.service-card h4 {
  color: #8d0b41;
  font-weight: 700;
}

.results-section {
  background: #fafafa;
}

.case-study-card {
  background: linear-gradient(
    135deg,
    rgba(141, 11, 65, 0.04),
    rgba(141, 11, 65, 0.1)
  );

  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(141, 11, 65, 0.15);
  height: 100%;
}

.case-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.achievement-box {
  display: flex;
  align-items: center;
  gap: 12px;

  background: #fff;
  padding: 20px;
  border-radius: 16px;

  border: 1px solid #eee;

  transition: 0.3s ease;
}

.achievement-box:hover {
  transform: translateY(-8px);
  border-color: #8d0b41;
  box-shadow: 0 15px 35px rgba(141, 11, 65, 0.08);
}

.fa-arrow-trend-up {
  color: #8d0b41;
  font-size: 40px;
}

