/* Banner样式 */
.banner {
    height: 600px;
    background: url('../images/banner.png') no-repeat center;
    background-size: cover;
    margin-top: 80px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.banner-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #FF6B6B;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #ff5252;
}

/* 服务特色 */
.section-title {
    text-align: center;
    font-size: 36px;
    margin: 60px 0 40px;
}

.feature-list {
    display: flex;
    justify-content: space-between;
    margin: 0 -15px;
}

.feature-item {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.feature-item img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
}

/* 服务项目 */
.service-list {
    display: flex;
    justify-content: space-between;
    margin: 0 -15px;
}

.service-item {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
} 