@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 Header*/


/* Gestaltung main*/

.impressum-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #545454;
}

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

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

.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);
    /* 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 {
    font-family: 'cabin';
    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 */
