body {
  font-family: Arial, sans-serif;
}

.header-section {
  background-color: #f8f9fa;
  padding: 50px 0;
  text-align: center;
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
}



.service-tile {
  transition: transform 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-tile:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.service-section {
  padding: 50px 0;
}

.btn-custom {
  background-color: #171769;
  color: #fff;
  border: none;
}
.btn-custom:hover {
  background-color: #0f1150; /* etwas dunkler für Hover-Effekt */
  color: #fff;
}


.footer {
  background-color: #343a40;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.navbar-nav .nav-link {
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #0056b3;
}
.navbar-nav .nav-link.active {
  color: #0056b3;
  font-weight: bold;
}


.navbar-logo {
  max-height: 60px;
  height: auto;
  width: auto;
}