/* ── About Us Section ── */
.section-about {
    position: relative;
    padding: 100px 40px;
    background: #0a0e17;
}
.section-about::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4fc3f7, transparent);
}
.about-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about-inner h2 {
    font-size: 2.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}
.about-content {
    text-align: left;
}
.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.2rem;
}
.about-text-en {
    display: block;
}
.about-text-zh {
    display: none;
}

/* Language-specific display */
body.lang-zh .about-text-en {
    display: none;
}
body.lang-zh .about-text-zh {
    display: block;
}
body.lang-en .about-text-en {
    display: block;
}
body.lang-en .about-text-zh {
    display: none;
}
