/* 滁州助孕页面样式 - 模板6：列表式布局 */

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

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

.page-header p {
    font-size: 18px;
    color: #555;
}

/* 咨询介绍 */
.consulting-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-list {
    padding: 80px 0;
    background: #f8f9fa;
}

.list-container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background: #fff;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-item-header {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-number {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #a8edea;
}

.service-item-header h3 {
    font-size: 24px;
    color: #2c3e50;
}

.service-item-body {
    padding: 30px;
}

.service-item-body p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sub-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.sub-service {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #a8edea;
}

.sub-service h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.sub-service p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* 客户案例 */
.client-cases {
    padding: 80px 0;
    background: #fff;
}

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

.case-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

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

.case-card p {
    color: #666;
    line-height: 1.6;
}

/* 服务流程 */
.service-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step p {
    color: #666;
    font-size: 14px;
}

/* 响应式 */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .service-item-header {
        flex-direction: column;
        text-align: center;
    }
    
    .sub-services {
        grid-template-columns: 1fr;
    }
}
