body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    background: #fff;
    min-height: 100vh;
    padding: 2rem 2rem 2rem 2rem;
    margin: 0;
}

.container {
    max-width: 800px;
    width: 100%;
}

.hero {
    text-align: left;
    background: #fff;
    padding: 0;
}

.name {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.profile-image {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
    border: 3px solid #000;
    display: block;
}

.portfolio-link {
    font-size: 16px;
}

.portfolio-link a {
    color: #000;
    text-decoration: underline;
}

.portfolio-link a:hover {
    text-decoration: none;
}

.subheaders {
    margin: 0;
}

.subheaders p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
}

.subheaders ul {
    margin: 0 0 0.5rem 0;
    padding-left: 1.5rem;
}

.subheaders li {
    font-size: 16px;
    margin-bottom: 0.25rem;
}

.subheaders a {
    color: #000;
    text-decoration: underline;
}

.subheaders a:hover {
    text-decoration: none;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 1rem 1rem 1rem 1rem;
    }
    .name {
        font-size: 24px;
        margin-bottom: 1.5rem;
    }
    .subheaders p {
        font-size: 16px;
    }
    .profile-pic {
        width: 120px;
        height: 120px;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem 1rem 1rem 1rem;
    }
    .name {
        font-size: 24px;
        margin-bottom: 1rem;
    }
    .subheaders p {
        font-size: 16px;
    }
    .profile-pic {
        width: 100px;
        height: 100px;
        border-radius: 0;
    }
}