/* 调整Global Presence板块与Development History板块之间的间距 */
/* Global Presence板块样式调整，使其与其他板块保持一致的布局风格 */
.global-presence-section {
    padding-top: 3rem !important; /* 与其他板块保持一致的上边距 */
    margin-top: 0 !important; /* 移除负margin，确保位置自然协调 */
}

/* 响应式调整 - 在小屏幕设备上保持一致的间距 */
@media (max-width: 768px) {
    .global-presence-section {
        padding-top: 2rem !important;
        margin-top: 0 !important;
    }
}

/* 调整contact页面板块间距 */
.contact-info-section {
    padding-bottom: 2rem !important; /* 减小Global Presence板块的下间距 */
}

.contact-form-section {
    padding-top: 2rem !important; /* 减小Contact Form板块的上间距 */
    padding-bottom: 3rem !important; /* 保持合适的下间距 */
}

/* 响应式调整 - 在小屏幕设备上 */
@media (max-width: 768px) {
    .contact-info-section {
        padding-bottom: 1.5rem !important;
    }
    
    .contact-form-section {
        padding-top: 1.5rem !important;
        padding-bottom: 2rem !important;
    }
}