/* Gestaltung main*/
body {
    font-family: Arial;
    margin: 0;
    padding: 0;
  }
  
.impressum-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #545454;
    margin-top: 80px;
}

.impressum-section h1 {
    color: #333;
    text-align: left;
    margin-top: 50px;
    font-style: italic;
}

.impressum-section p {
    margin-bottom: 10px;
}

.data-protection-cta {
    display: inline-block;
    /* Erlaubt das Hinzufügen von Padding und macht sie zeilenartig */
    padding: 10px 20px;
    /* Padding für den Button */
    margin-top: 10px;
    /* Abstand vom vorhergehenden Text */
    background-color: orangered;
    /* Hintergrundfarbe des Buttons */
    color: white;
    /* Textfarbe des Buttons */
    text-decoration: none;
    /* Entfernt die Unterstreichung des Links */
    border-radius: 5px;
    /* Abgerundete Ecken für den Button */
    transition: background-color 0.3s;
    /* Weiche Übergänge für Hover-Effekte */
}

.data-protection-cta:hover {
    background-color: #ffbd59;
    /* Hintergrundfarbe beim Hover */
}


/* Responsive Styling */

@media (max-width: 768px) {
    .impressum-section {
        margin: 20px 10px;
        /* Reduziert den seitlichen Abstand auf kleinen Bildschirmen */
        padding: 20px 10px;
        /* Ebenfalls reduzierter Padding für kleinen Bildschirme */
    }
    .impressum-section h1 {
        font-size: 1.5rem;
        /* Verkleinert die Schriftgröße für die Überschrift */
    }
}

@media (max-width: 480px) {
    .impressum-section {
        margin: 10px;
        /* Noch kleinerer seitlicher Abstand für sehr kleine Bildschirme */
        padding: 15px;
        /* Reduziertes Padding für sehr kleine Bildschirme */
    }
    .impressum-section h1 {
        font-size: 1.25rem;
        /* Noch kleinere Schriftgröße für die Überschrift */
    }
    .impressum-section p {
        font-size: 0.9rem;
        /* Kleinere Schriftgröße für den Text */
    }
}


/*Gestaltung Quality section*/

#quality-service {
    text-align: center;
    color: #545454;
    padding: 30px;
}

#quality-service h1 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.service-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.service-item {
    width: calc(33.333% - 20px);
    margin: 0 10px;
}

.service-item .icon {
    max-width: 100%;
    /* Stellt sicher, dass das Icon nicht größer als der Container ist */
    height: auto;
    margin-bottom: 10px;
    /* Fügt Abstand unter dem Icon hinzu */
    border-radius: 50%;
}

.service-item h2 {
    margin-top: 10px;
    font-size: 1.3rem;
}

.service-item p {
    margin-top: 5px;
}

.cta-button {
    background-color: orangered;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    /* Fügt Abstand über dem Button hinzu */
    font-size: 1rem;
    border-radius: 5%;
}

.cta-button:hover {
    background-color: #ffbd59;
}


/* Responsive Design */

@media screen and (max-width: 768px) {
    .service-container {
        flex-direction: column;
    }
    .service-item {
        width: 100%;
        margin-bottom: 20px;
    }
}
