/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Garamond', 'Times New Roman', Georgia, serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: white;
    min-height: 100vh;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.name {
    font-size: 2.2rem;
    font-weight: 400;
    color: #000;
    margin: 0;
    letter-spacing: -0.02em;
}

.title {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #000;
    border-bottom-color: #333;
}

/* Main content */
.main-content {
    max-width: 700px;
    margin: 0 auto;
}

.bio {
    margin-bottom: 3rem;
}

.bio p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    text-align: left;
}

/* Advisory roles section */
.advisory-roles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.advisory-roles h2 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.advisory-roles ul {
    list-style: none;
}

.advisory-roles li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.advisory-roles li::before {
    content: "•";
    color: #666;
    font-weight: normal;
    position: absolute;
    left: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
        margin: 0;
        box-shadow: none;
    }

    .name {
        font-size: 2rem;
    }

    .title {
        font-size: 1rem;
    }

    .navigation {
        flex-direction: column;
        align-items: center;
    }

    .nav-link {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .bio p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }

    .name {
        font-size: 1.75rem;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }
}
