
/* Réinitialisation des styles par défaut du navigateur */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
}

/* Style du corps de la page */
body {
    font-family: Arial;
    line-height: 1.6;
    padding: 20px;
    background-color: #f4f4f4;
}

/* Gestaltung main*/

.privacy-policy-section {
    max-width: 1200px;
    margin: 40px auto;
    margin-top: 100px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.privacy-policy-section h1 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.privacy-policy-section p {
    color: #545454;
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.6;
}

.data-protection-cta {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: orangered;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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


/* Responsives Styling für mittelgroße Bildschirme */

@media (max-width: 992px) {
    .privacy-policy-section {
        padding: 20px 15px;
        /* Etwas weniger Padding */
    }
}


/* Responsives Styling für kleine Bildschirme */

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 15px;
        /* Noch weniger Padding */
    }
    .privacy-policy-section h1 {
        font-size: 1.5rem;
        /* Kleinere Schriftgröße für Überschriften */
    }
    .privacy-policy-section p {
        text-align: left;
        /* Auf kleinen Bildschirmen, Blocksatz entfernen */
    }
}


/* Responsives Styling für sehr kleine Bildschirme */

@media (max-width: 576px) {
    .privacy-policy-section {
        margin: 20px 10px;
        /* Reduziert den seitlichen Abstand */
    }
    .privacy-policy-section h1 {
        font-size: 1.4rem;
        /* Noch kleinere Schriftgröße für Überschriften */
    }
}

#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;
    }
}

