/* 定义全局变量，方便以后一键改色 */
:root {
    --industrial-blue: #004a99;
    --accent-orange: #f97316;
}

.bg-industrial-blue { background-color: var(--industrial-blue); }
.text-industrial-blue { color: var(--industrial-blue); }

/* 页面平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 仿 Acro 的硬朗侧边装饰 */
.section-heading {
    border-left: 8px solid var(--industrial-blue);
    padding-left: 1rem;
}

/* 产品图片悬停特效 */
.part-card-img {
    transition: transform 0.5s ease;
}
.part-card-container:hover .part-card-img {
    transform: scale(1.1);
}