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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Funnel Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
    padding: 40px 20px;
    max-width: 680px;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Profile Photo */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
}

.profile-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    background: #e0e0e0;
    display: inline-block;
}

.name {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.role {
    font-size: 18px;
    color: #666;
    font-weight: 400;
    margin-bottom: 0;
}

/* Section Layout */
.section-wrapper {
    display: flex;
    margin-bottom: 50px;
    gap: 20px;
}

.section-label {
    font-size: 13px;
    color: #999;
    min-width: 80px;
    padding-top: 2px;
    flex-shrink: 0;
}

.section-content {
    flex: 1;
}

.section-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* Links */
a {
    color: #1a1a1a;
    text-decoration: underline;
    transition: color 0.2s ease;
}

a:hover {
    color: #666;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    gap: 8px;
    margin-top: 0;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fafafa;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.contact-button:hover {
    border-color: #999;
    background: white;
}

.contact-button svg {
    width: 14px;
    height: 14px;
}

/* Responsive */
@media (max-width: 600px) {
    .section-wrapper {
        flex-direction: column;
        gap: 8px;
    }

    .section-label {
        min-width: auto;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
    }

    .name {
        font-size: 28px;
    }

    .role {
        font-size: 16px;
    }
}
