#about { background:#fff; padding:60px 0; }
#about .section-title {
    font-size:36px;
    font-weight:600;
    color:#333;
    margin-bottom:8px;
    text-align: center;
}
#about .section-subtitle {
    font-size:16px;
    color:#666;
    margin-bottom:40px;
    text-align: center;
}
.about-content {
    display:flex;
    gap:40px;
    align-items:stretch;
    margin-bottom:50px;
    max-width:1200px;
    width:100%;
    margin-left:auto;
    margin-right:auto;
    padding:0 15px;
    box-sizing:border-box;
}
.about-text {
    flex:1;
    min-width:400px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.about-text h3 {
    display:none;
}

.about-text .content-box {
    font-size:15px;
    color:#333;
    line-height:1.8;
    flex-grow:1;
    padding:0;
    border:none;
    border-radius:4px;
    white-space:normal;
    word-break:normal;
}

[lang="en"] .about-text .content-box {
    font-size:15px !important;
    line-height:1.8 !important;
    color:#333 !important;
    white-space: pre-line !important;
    word-break: break-word !important;
    overflow: visible !important;
    display: block !important;
    height: auto !important;
    min-height:200px !important;
    max-height: none !important;
    flex-grow:1 !important;
}

.about-text .btn-more {
    display:inline-block;
    padding:10px 30px;
    background:#00CCCC;
    color:#fff;
    text-decoration:none;
    border-radius:25px;
    font-size:16px;
    align-self:flex-start;
    margin-top:20px;
}

/* 中文图片不动 */
.about-image {
    flex:1;
    min-width:400px;
    height:100%;
    overflow:hidden;
    border-radius:8px;
}
.about-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* 🔥 只给英文页面的图片往下移，实现顶部对齐 */
[lang="en"] .about-image img {
    margin-top: 30px !important;
}

.about-image-placeholder {
    width:100%;
    height:100%;
    background:#e0e0e0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#999;
}

.about-stats {
    display:flex;
    justify-content:space-around;
    text-align:center;
    margin-top:40px;
    max-width:1200px;
    width:100%;
    margin-left:auto;
    margin-right:auto;
    padding:0 15px;
    box-sizing:border-box;
}
.stat-item .num {
    font-size:42px;
    color:#00CCCC;
    font-weight:bold;
    margin-bottom:8px;
}
.stat-item .label {
    font-size:16px;
    color:#333;
}