/* 响应式调整 */
@media (max-width: 767.98px) {
    .footer-links {
        text-align: center !important;
    }
}

/* 导航栏激活状态 */
.nav-link.active {
    font-weight: bold;
    border-bottom: 2px solid white;
}

/* 主要内容区域 */
main {
    padding-top: 80px; /* 为固定导航栏留出空间 */
    min-height: calc(100vh - 180px); /* 减去页脚高度 */
}

/* 页脚样式 */
footer {
    margin-top: auto; /* 确保页脚始终在底部 */
}

.navbar.fixed-top {
    width: 100%;
}