body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
}

header .profile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

header .profile img {
    width: 150px;
    border-radius: 50%;
}

header .profile-details {
    margin-left: 20px;
}

header .buttons button {
    margin: 5px;
    padding: 10px 15px;
    background-color: #5c6bc0;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

header .buttons button:hover {
    background-color: #3f4f80;
}

section {
    padding: 20px;
    background-color: white;
    margin: 20px;
    border-radius: 5px;
}

footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #5c6bc0;
}
