.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 1px solid #000000;
}

.subtitle {
    color: #7f8c8d;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.bio {
    text-align: justify;
    margin-bottom: 30px;
}

.document-download {
    text-align: center;
    margin-top: 30px;
}

.download-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.cv-button:hover {
    background-color: #2980b9;
}

.cv-button i {
    margin-right: 10px;
}

.documents-container
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}