/* Related Services / Passende Services Box */
.related-services {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.related-service-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.related-service-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.related-service-icon {
  font-size: 40px;
  margin-bottom: 15px;
  line-height: 1;
}

.related-service-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.related-service-title a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-service-title a:hover {
  color: #086AD8;
}

.related-service-desc {
  font-size: 15px;
  color: #696969;
  margin: 0;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .related-services {
    padding: 60px 0;
  }
}
