/* 页面更新 2024 - 统一样式更新 */

/* 1. 公司页面更新 */
/* 将"Our Story: From Vision to Global Leader"标题变绿 */
.story-text .section-title {
    color: var(--primary-color);
}

/* 将所有横线和竖线变绿 */
.story-grid::before,
.story-grid::after,
.mvv-grid-alt::before,
.mvv-grid-alt::after,
.sustainability-content::before,
.sustainability-content::after {
    background-color: var(--primary-color);
}

/* 2. 技术页面更新 */
/* 将"Key Technology Pillars"和"Technology in Action"标题变绿 */
.technology-pillars-section .section-title,
.technology-spotlight-section .section-title {
    color: var(--primary-color);
}

/* 将下面的横线变绿 */
.technology-pillars-section .section-title::after,
.technology-spotlight-section .section-title::after {
    background-color: var(--primary-color);
}

/* 3. 联系页面重新排版 */
/* 重新设计"Send Us a Message"和"Find Us"部分 */
.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-form-wrapper,
.contact-info-map-wrapper {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.contact-form-wrapper h2,
.contact-info-map-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-wrapper h2::after,
.contact-info-map-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.map-container-inline {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }
}

/* 4. 为三个页面添加背景图片 */
/* 公司页面标题背景 */
.company-title-bg {
    background-image: url('../images/slider/global-logistics.jpg');
    background-size: cover;
    background-position: center;
}

.company-title-bg h1,
.company-title-bg p {
    color: white;
}

/* 技术页面标题背景 */
.technology-title-bg {
    background-image: url('../images/slider/global-logistics.jpg');
    background-size: cover;
    background-position: center;
}

.technology-title-bg h1,
.technology-title-bg p {
    color: white;
}

/* 联系页面标题背景 */
.contact-title-bg {
    background-image: url('../images/slider/global-logistics.jpg');
    background-size: cover;
    background-position: center;
}

.contact-title-bg h1,
.contact-title-bg p {
    color: white;
}

/* 添加装饰线，与services.html保持一致 */
.page-title-decoration {
    height: 3px;
    width: 60px;
    background-color: white;
    margin-top: 15px;
}