/* 平台标题 */
.services-header {
    background-image: url('../images/vs-1.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 380px;
    padding: 85px 0;
    padding-left: 280px;
    text-align: left;
    color: white;
}

.services-header h1 {
    font-size: 100px;
    margin-bottom: 10px;
}

.services-header h2 {
    font-size: 48px;
    margin: 0;
}

/* 增值服务内容 */
.services-content {
    background-color: white;
}

.service-section {
    display: flex;
    gap: 50px;
    padding: 80px 280px;
}

.service-section:first-child{
    background: linear-gradient(to bottom, #fff 0%, #F1F6FD 24%);
}

.service-section:last-child{
    background: #F1F6FD;
}

.service-section:nth-child(2) > .service-image{
    width: 640px;
}

.service-section:nth-child(3) {
    background: linear-gradient(to bottom, #F1F6FD 0%, #FFF 24%);
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 20px;
}

.service-text h3 {
    font-size: 32px;
    color: #222;
    margin: 30px 0 15px 0;
}

.service-text p {
    font-size: 20px;
    color: #222;
    margin-bottom: 15px;
}

.service-image {
    width: 780px;
    height: 740px;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* 企业保密环境评估 - 帮助实现列表 */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.benefit-item h4 {
    font-size: 28px;
    color: #222;
    margin-bottom: 12px;
    font-weight: bold;
}

.benefit-item p {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 企业保密培训 */
.training-module {
    margin-bottom: 25px;
}

.training-module h3 {
    font-size: 28px;
    color: #222;
}

.training-module p {
    font-size: 20px;
    color: #666;
}

/* 销毁现场合规检测 */
.xchgjc p {
    font-size: 20px;
    color: #222;
    margin-bottom: 60px;
}
/* 密销行业培训 */
.mxhypx p {
    font-size: 20px;
    color: #222;
    margin-bottom: 36px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .services-header {
        height: auto;
        padding: 40px 20px;
        text-align: center;
    }

    .services-header h1 {
        font-size: 36px;
    }

    .services-header h2 {
        font-size: 24px;
    }
    
    .service-section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .service-section:nth-child(even) {
        flex-direction: column-reverse;
    }
    
    .service-image {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    .service-image img {
        border-radius: 8px;
        width: 80%;
        margin: 0 auto;
    }
    
    .service-text h2 {
        font-size: 24px;
    }

    .service-text h3 {
        font-size: 20px;
    }

    .service-text p {
        font-size: 14px;
    }

    .benefits-list {
        gap: 15px;
    }

    .benefit-item h4 {
        font-size: 18px;
    }

    .benefit-item p {
        font-size: 14px;
    }

    .training-module h3 {
        font-size: 18px;
    }

    .training-module p {
        font-size: 14px;
    }

    .xchgjc p, .mxhypx p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .services-header h1 {
        font-size: 28px;
    }

    .services-header h2 {
        font-size: 18px;
    }

    .service-section {
        padding: 30px 15px;
    }
}