/* 专家介绍容器 */
.expert-container {
    padding: 80px 20px;
    background: #f9fafb;
}

.expert-info {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.expert-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.expert-details h1 {
    font-size: 28px;
    color: #004a9e;
    margin-bottom: 10px;
}

.expert-details h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.expert-details p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.expert-contact p {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .expert-info {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .expert-photo img {
        width: 150px;
        height: 150px;
    }

    .expert-details h1 {
        font-size: 24px;
    }

    .expert-details h2 {
        font-size: 18px;
    }
}
