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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 400;
}

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

/* Content */
.content {
    padding: 100px 2rem 2rem;
}

.header-section {
    margin-bottom: 2rem;
}

.photo-name-section {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: space-between;
}

.photo-section {
    flex-shrink: 0;
}

.profile-picture {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.name-links-section {
    display: flex;
    flex-direction: column;
}

.name-section {
    margin-bottom: 1rem;
}

.name-section h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 1;
}

.contact-info {
    margin-top: 0;
}

.contact-info p {
    font-size: 0.95rem;
    color: #374151;
    margin: 0;
}

.bio-section {
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bio-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    text-align: center;
    position: relative;
}

.bio-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 750px;
    height: 2px;
    background-color: #000000;
}

.bio-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #1f2937;
}

.bio-section p a {
    color: #000000;
    text-decoration: underline;
}

.bio-section p a:hover {
    text-decoration: none;
}

/* Two Column Layout */
.two-column-section {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.column-left,
.column-right {
    flex: 1;
    margin-bottom: 0;
}

/* Centered Section */
.centered-section {
    margin-bottom: 3rem;
    text-align: center;
}

.centered-section h2 {
    text-align: center;
    position: relative;
}

.centered-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 750px;
    height: 2px;
    background-color: #000000;
}

.centered-section ul {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.centered-section .bullet-list {
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #000000;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: #000000;
    background-color: #ffffff;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background-color: #000000;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.submit-button:hover {
    background-color: #374151;
}

/* Sections */
.section {
    margin-bottom: 3rem;
}

.section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    text-align: center;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 750px;
    height: 2px;
    background-color: #000000;
}

.section ul {
    list-style: none;
    padding-left: 0;
}

.bullet-list {
    list-style: disc !important;
    padding-left: 1.5rem;
}

.bullet-list li {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0;
    padding-top: 0;
    line-height: 1.2;
}

.section > ul > li {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.work-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.work-title {
    flex: 1;
}

.work-date-location {
    text-align: right;
    flex-shrink: 0;
    margin-left: 2rem;
    color: #D3D3D3;
}

.section > ul > li > strong {
    font-weight: 600;
    color: #000000;
}

.section > ul > li > em {
    font-style: italic;
    color: #374151;
}

.section ul ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.section ul ul li {
    margin-bottom: 0.75rem;
    color: #374151;
    line-height: 1.6;
}

.section a {
    color: #000000;
    text-decoration: underline;
}

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

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 0 1rem;
        padding-bottom: 3rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .content {
        padding: 80px 1.5rem 1rem;
    }

    .profile-picture {
        width: 250px;
        height: 250px;
    }

    .name-section h1 {
        font-size: 1.75rem;
    }

    .bio-section {
        margin-bottom: 2rem;
    }

    .bio-section h2 {
        font-size: 1.25rem;
    }

    .section {
        margin-bottom: 2.5rem;
    }

    .section h2 {
        font-size: 1.25rem;
    }

    .two-column-section {
        flex-direction: column;
        gap: 2rem;
    }

    .centered-section ul {
        max-width: 100%;
    }
}
