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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: white;
    line-height: 1.6;
    color: #333;
}

.container {
    display: flex;
    min-height: 100vh;
    position: relative;
}

.left-section {
    width: 300px;
    padding: 50px;
    background-color: white;
}

.divider {
    position: absolute;
    left: 300px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: #e0e0e0;
}

.right-section {
    flex: 1;
    padding: 30px;
    margin-left: 1px;
}

.avatar {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}

.chinese-name {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

.info-label {
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.contact-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
}

.project {
    margin-bottom: 40px;
}

.project-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #222;
}

.project-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

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

.contact-link:hover .contact-icon {
    opacity: 0.7;
}

.icp-number {
    margin-top: 30px;
    font-size: 12px;
    color: #999;
    text-align: center;
}