/* about.css */
.about-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.brand-name {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.mission-statement {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-style: italic;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.about-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* 文字部分样式 */
.text-card h2 {
    color: #34495e;
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 10px;
}

.text-card p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.about-contact {
    text-align: center;
    margin-top: 40px;
    color: #555;
}

.about-contact h3 {
    color: #34495e;
    margin-bottom: 10px;
}

.about-contact p {
    font-size: 1.1rem;
}

/* 响应式适配 */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}