* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6rem;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

.profile {
    text-align: center;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.25rem;
    filter: grayscale(100%);
}

.name {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    color: #222;
    letter-spacing: -0.02em;
}

.location {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.role {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.company-link {
    color: #333;
    text-decoration: none;
}

.company-link:hover {
    text-decoration: underline;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

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

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .name {
        font-size: 1.75rem;
    }
}