body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    width: 90%;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px;
}

.profile-header {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #ffffff;
    object-fit: cover;
    margin-bottom: 20px;
}

.profile-name {
    margin: 0;
    font-size: 2.5em;
    font-weight: 300;
}

.job-title {
    margin: 5px 0 0;
    font-size: 1.2em;
    font-weight: 300;
    color: #e0e0e0;
}

.content {
    padding: 40px;
    text-align: center;
    font-size: 1.1em;
    color: #666;
}

.profile-footer {
    background-color: #f4f7f6;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #888;
}

@media (max-width: 600px) {
    .profile-name {
        font-size: 2em;
    }

    .job-title {
        font-size: 1em;
    }

    .content {
        padding: 30px;
    }
}