/* ============================================ */
/* 关于我们页面样式 */
/* ============================================ */

.about-page .about-section {
    padding: 80px 30px;
}

.about-page .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-page .section-header h1 {
    font-size: 36px;
    font-weight: bold;
    color: #5D4037;
    margin-bottom: 10px;
}

.about-page .section-header .subtitle {
    font-size: 14px;
    color: #8B7B6B;
    letter-spacing: 2px;
}

.about-page .about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* 关于卡片 */
.about-page .about-card {
    background: rgba(250, 248, 245, 0.9);
    border: 1px solid rgba(232, 224, 216, 0.8);
    padding: 30px;
    position: relative;
}

.about-page .about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #A0522D);
}

.about-page .about-card .card-title {
    font-size: 18px;
    font-weight: bold;
    color: #5D4037;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(232, 224, 216, 0.8);
}

.about-page .about-card .card-content {
    font-size: 13px;
    color: #6B5B4F;
    line-height: 1.8;
}

.about-page .about-card .card-content p {
    margin-bottom: 12px;
}

.about-page .about-card .card-content p:last-child {
    margin-bottom: 0;
}

/* 响应式 */
@media (max-width: 900px) {
    .about-page .about-section {
        padding: 60px 20px;
    }
    
    .about-page .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-page .section-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .about-page .about-card {
        padding: 20px;
    }
    
    .about-page .about-card .card-title {
        font-size: 16px;
    }
}