/* 滁州代妈页面样式 - 模板2：卡片式布局 */

/* 页面标题 */
.page-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

/* 服务介绍区域 */
.service-intro {
    padding: 80px 0;
    background: #fff;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* 服务卡片网格 */
.service-cards {
    padding: 80px 0;
    background: #f8f9fa;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: #fff;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.card ul {
    list-style: none;
    margin-top: 15px;
}

.card ul li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px dashed #eee;
}

.card ul li:before {
    content: "✓ ";
    color: #f5576c;
    font-weight: bold;
    margin-right: 8px;
}

/* 特色服务 */
.features {
    padding: 80px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* 响应式 */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
}
