/* 自定义更新样式 */

/* 1. 增加CTA按钮与下方板块的距离 */
.cta-buttons {
    margin-bottom: 40px; /* 原来的间距较小，增加到40px */
}

/* 2. 将页脚中的标语文字颜色改为白色 */
.footer-tagline {
    color: #FFFFFF !important;
}

/* 3. 重新排版服务介绍部分 */
.services-intro-section .intro-text {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 20px;
}

/* 服务图标排成一行 */
.service-icons-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow-x: auto;
    padding: 10px 0;
}

.service-icon-item {
    flex: 0 0 auto;
    margin: 0 10px;
}

.services-intro-section .intro-text h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.services-intro-section .intro-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.services-intro-section .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* 4. 轮播图白色文字样式 */
.hero-slider-barsan .slide-caption {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    z-index: 5;
    padding: 0 20px;
    transform: translateY(-50%);
}

.hero-slider-barsan .slide-caption h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-slider-barsan .slide-caption p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}