.profil {
    position: relative;
    display: flex;
    align-items: stretch;
    text-align: center;
    justify-content: center;
    height: auto;
    background-color: var(--color-taupe);
    font-size: 1.0rem;
}

.profil-back {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    color: var(--color-font);
}

.profil-info {
    flex: 1;
    box-sizing: border-box;
    min-height: 500px;
    padding: 0px 50px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    text-align: left;
}

.profil-info a {
    color: var(--font-color);
}

.profil-h1 {
    font-size: 2rem;
    text-align: center;
    margin-top: 45px;
    margin-bottom: 35px;
}

.profil-text {
    margin: 15px 0;
    line-height: 1.6rem;
}

.profil-text-bold {
    font-weight: bold;
}

.profil-text-underline {
    text-decoration: underline;
}

.profil-image {
    flex: 1;
    box-sizing: border-box;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1080px;
    height: auto;
}

.profil-text ul {
    margin-left: 20px;
    /* margin-top: 20px; */
    list-style-type: circle;
}

.profil-ul li {
    padding-bottom: 15px;
}

.profil-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-beige);
    border: 1px solid #ddd;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    width: 60%;
    max-width: 500px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.profil-contact p {
    margin: 10px 0;    
}

.profil-contact i {
    margin-right: 3px;
}

.profil-contact i.fa-brands {
    margin: 0px 10px;
    font-size: 1.5em;
}

.profil-contact i.fa-globe {
    margin: 0px 10px;
    font-size: 1.5em;
}

.profil-contact hr {
    width: 85%;
    margin: 0px auto; 
    border: none;
    border-top: 1px solid #000;
    opacity: 0.2;
}

@media (max-width: 1200px) {
    .profil-h1 {
        margin-top: 50px;       
    }

    .profil {
        flex-direction: column;
    }

    .profil-info {
        padding: 20px;
    }

    .profil-contact {
        width: 60%;
    }

    .profil-image {
        width: 60%;
        margin: 25px auto;
    }
}

@media (max-width: 1000px) {
    .profil-h1 {
        margin-top: 50px;       
    }

    .profil-contact {
        width: 80%;
    }

    .profil-image {
        width: 75%;
        margin: 25px auto;
    }
}

@media (max-width: 700px) {
    .profil-h1 {
        margin-top: 50px;       
    }

    .profil-image {
        width: 100%;
    }
}