.service-showcase {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: #222;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 48px;
  color: #eb0028;
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.4rem;
  color: #111;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }
}