  /* Services Section */
.ai-services h3 {
  font-size: 26px;
  margin-bottom: 25px;
  text-transform: capitalize;
  font-weight: 600;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.service-card .icon {
  font-size: 32px;
  color: #ed7679;  /* brand color / accent */
  margin-bottom: 15px;
}

.service-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card ul {
  padding-left: 18px;
  margin: 0;
}

.service-card ul li {
  font-size: 15px;
  line-height: 1.7;
  position: relative;
}

.service-card ul li::before {
  content: "✔";
  color: #ed7679;
  font-size: 12px;
  margin-right: 6px;
}

/* Key Benefits Section */
.ai-benefits h3 {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: capitalize;
}

.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.benefit-card .icon {
  font-size: 32px;
  color: #ed7679;   /* accent / brand color */
  margin-bottom: 12px;
}

.benefit-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* How It Works Section */
.ai-how h3 {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: capitalize;
}

.how-step {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.how-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.step-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 12px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
}

.how-step h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Our Impact / Metrics Section */
.ai-metrics h3 {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
}

.metric-card {
  background: #fff;
  padding: 25px 20px;
  text-align: center;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.metric-card h4 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.metric-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
}