.serve-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.serve-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px 15px 30px;
  text-align: start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.serve-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #5c1f2e;
  text-align: start;

  margin-bottom: 16px;
}
.serve-card p {
  font-size: 16px;
  font-weight: 600;
  color: #4b5563;
  line-height: 1.6;
  text-align: start;
}
.serve-card a {
  color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 18px;
  font-weight: 400;
  padding-top: 5px;
}
.serve-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: start;
  justify-content: start;
  border-radius: 50%;
}

.serve-icon img {
  width: 56px;
  height: 56px;
}
@media (min-width: 768px) {
  .serve-grid {
    grid-template-columns: repeat(2, 2fr);
  }
  .serve-card a {
    justify-content: flex-end;
  }
}
.subtitle {
  color: #4b5563;
  font-size: 18px;
}
.testimonial-section h3 {
  font-size: 36px;
  color: #1a2238;
  margin-bottom: 1px;
}
.cta-content {
  font-size: 48px;
  font-weight: 400;
  color: white;
}
