@charset "utf-8";
/* CSS Document */


.services h2{
    color: black
}

.service-item h3{
    font-size: 3rem;
    margin: 0px;
}
.LKMw {
    flex: 1 1 45%; /* passt sich an, aber bleibt relativ gleich groß */
    box-sizing: border-box;
    padding: 20px;
    max-width: 750px;
    min-width: 300px;
    margin: 10px;
    line-height: 1.6;
    font-family: Arial, sans-serif;
  }

.LKMw p{
    padding-bottom: 0;
    margin-bottom: 0;
    
}

  .heroTXT {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Abstand zwischen Boxen */
    justify-content: center; /* optional, zentriert die Boxen */
  }

/* Wenn der Bildschirm kleiner als 768px ist (z. B. Tablets & Smartphones) */
@media (max-width: 768px) {
    .LKMw{
        width: 100%; /* Volle Breite für kleinere Displays */
    }
}