.certificates {
  text-align: center;
  margin-top: 20px;
}

.certificates h3 {
  color: #005f99;
  font-weight: bold;
  margin-bottom: 20px;
}

.badge-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.badge-container img {
  width: 130px;               /* Grundgröße */
  height: auto;
  display: inline;
  transition: transform 0.25s ease, 
              filter 0.25s ease;
}

/* Hover-Effekt */
.badge-container img:hover {
  transform: scale(1.08);
  filter: brightness(1.08) saturate(1.15);
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .badge-container img:hover {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.2);
  }
}