/* Gestaltung Header*/

@font-face {
    font-family: cabin;
    src: url(font/Cabin/static/Cabin-Bold.ttf);
}
@font-face {
    font-family: lato;
    src: url(font/Lato/Lato-Regular.ttf);
}
body {
    font-family: 'lato';
}
*{
    font-family: 'lato';
}
p{
    font-size: 16px;
}
h1{font-size: 29px;}
h2{font-size: 26px;}
h3{font-size: 17px;}
h6{font-size: 12px; text-transform: uppercase;}
@media (min-width:1300px) {
    p{font-size: 18px;}
h1{font-size: 45px;}
h2{font-size: 24px;}
h3{font-size: 20px;}
h6{font-size: 16px; text-transform: uppercase;}
}
@media (max-width:768px) {
p{font-size: 12px;}
h1{font-size: 27px;}
h2{font-size: 21px;}
h3{font-size: 15px;}
h6{font-size: 10px;}
}
@media (max-width:480px) {
p{font-size: 12px;}
h1{font-size: 18px;}
h2{font-size: 16px;}
h3{font-size: 14px;}
h6{font-size: 10px;}
}
/* Définition de la variable des couleurs  */
:root {
    --claire: #46AFCF;
    --vert: #498536;
    --bleu: #03466E;
    --rouge: #9D0F07; 
}

/* Gestaltung main*/

.privacy-policy-section {
    max-width: 1200px;
    margin: 70px auto;
    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: var(--bleu);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.data-protection-cta:hover {
    background-color: var(--vert);
}


/* 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;
    }
}


/* Gestaltung footer */
