.section-title {
  font-family: 'Marcellus', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #3b653d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Box */
.service-box {
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(60, 100, 60, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

/* Einzelnes Icon */
.service-box > i {
  font-size: 2rem;
  color: #3b653d;
  margin-bottom: 0.75rem;
}

/* Icon-Reihe (z. B. Gastronomie) */
.icon-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.icon-row i {
  font-size: 2rem;
  color: #3b653d;
}

/* Hover */
.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Text */
.service-box h5 {
  font-weight: 600;
  color: #3b653d;
  margin-bottom: 0.5rem;
}

.service-box p {
  font-size: 0.95rem;
  color: #6c757d;
}

@media (max-width: 768px) {
  .service-box {
    padding: 1.5rem;
  }
}
