body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F5F7FA;
    color: #333333;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #E0E4E8;
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-right: 20px;
    border: 3px solid #b51717;
    flex-shrink: 0;
}

header div {
    flex: 1 1 300px;
    min-width: 250px;
}

h1 {
    margin: 0;
    font-size: 28px;
    color: #b51717;
    font-weight: 700;
}

.contact {
    margin-top: 10px;
    font-size: 16px;
    word-wrap: break-word;
}

.contact a {
    color: #b51717;
    text-decoration: none;
    font-weight: 600;
    margin-right: 10px;
}

section {
    margin-top: 30px;
}

h2 {
    border-bottom: 2px solid #b51717;
    padding-bottom: 5px;
    font-size: 22px;
    color: #b51717;
    font-weight: 600;
}

.updates, .research {
    list-style-type: none;
    padding: 0;
}

.updates li, .research li {
    margin: 10px 0;
    padding: 10px;
    background: #F9FAFB;
    border-radius: 5px;
    transition: transform 0.2s;
    font-weight: 400;
}

.updates li:hover, .research li:hover {
    transform: scale(1.02);
    background: #E6F1FB;
}

/* --------- Responsive Design --------- */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-pic {
        margin-right: 0;
        margin-bottom: 15px;
        width: 150px;
        height: 150px;
    }

    .container {
        padding: 15px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    .contact {
        font-size: 14px;
    }

    .contact a {
        display: inline-block;
        margin: 5px;
    }
}
