.doctor-profile {
    max-width: 960px;
    margin: 0 auto 0 auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.45); /* 半透明白色 */
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.75;
}

.doctor-profile h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #5E473A;
    font-weight: bold;
}

.section-title {
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #5E473A;
    border-left: 4px solid #b56d29;
    padding-left: 10px;
}

.doctor-profile p {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.doctor-profile ul {
    padding-left: 25px;
    margin-bottom: 20px;
    list-style: none;  /* 👈 关键：去掉默认黑色圆点 */
}

.doctor-profile li {
    margin-bottom: 8px;
    font-size: 1rem;
    position: relative;
    padding-left: 12px;
}

.doctor-profile li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #b56d29;
    font-size: 1.2rem;
    line-height: 1;
}

.centered-image {
    display: block;
    margin: 0 auto 30px auto;
    max-width: 100%;
    border-radius: 8px;
}
