/* 关于我们样式 */

.about {
    background: #fff;
}

.about .section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
}

.about-logo svg {
    height: 80px;
    width: auto;
}

.about-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2329;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 14px;
    color: #646a73;
    line-height: 1.8;
    margin-bottom: 12px;
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.value {
    text-align: center;
    padding: 24px;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
