/* 页面标题 */
.page-title {
    margin-top: 80px;
    padding: 40px 0;
    background: #f8f8f8;
    text-align: center;
}

.page-title h2 {
    font-size: 36px;
    color: #333;
}

/* 服务流程 */
.service-process {
    padding: 60px 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: #FF6B6B;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    padding: 0 20px;
}

.step img {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.step p {
    color: #666;
}

/* 服务标准 */
.service-standards {
    padding: 60px 0;
    background: #f8f8f8;
}

.standards-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.standard-item {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.standard-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.standard-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.standard-item ul {
    list-style: none;
}

.standard-item ul li {
    color: #666;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.standard-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #FF6B6B;
    border-radius: 50%;
    transform: translateY(-50%);
}

/* 常见问题 */
.faq {
    padding: 60px 0;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* 通用样式 */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
} 