/* ========== 介绍页独有样式 ========== */
.content-card h2 {
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.6);
    border-bottom: 1px solid rgba(76, 175, 80, 0.3);
    padding-bottom: 10px;
}

.content-card h3 {
    color: #fff;
    margin: 20px 0 10px;
}

.content-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 10px;
}

.info-list {
    list-style: none;
    color: rgba(255, 255, 255, 0.85);
    line-height: 2;
    padding-left: 0;
}

.info-list li {
    padding-left: 10px;
    border-left: 2px solid rgba(76, 175, 80, 0.5);
    margin-bottom: 8px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .content-card {
        padding: 20px;
    }
    .content-card h2 {
        font-size: 1.5rem;
    }
}