body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #1a2639;
    color: #f0f0f0;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.name {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.button {
    border-radius: 5px;
    background-color: #3e6ae1;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #2a4c9e;
}

.sub-heading {
    font-size: 28px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3e6ae1;
}

.profile-photo {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

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

p {
    margin-bottom: 15px;
}