        /* ========== CSS Variables ========== */
        :root {
            --primary-color: #1a4d2e;
            --primary-rgb: 26, 77, 46;
            --secondary-color: #159895;
            --accent-color: #FFA500;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f5f7fa;
            --bg-white: #ffffff;
            --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background: #ddf1fc;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* ========== 固定头部（仿 maths.zqu.edu.cn） ========== */
        /* 整体 fixed 容器，初始透明，滚动后加背景 */
        .header-fixed {
            position: fixed;
            width: 100%;
            left: 0;
            top: 0;
            z-index: 90;
            /* 初始：从主色到透明的渐变，覆盖在轮播图上方 */
            background: linear-gradient(rgba(var(--primary-rgb), 1), rgba(var(--primary-rgb), 0));
            padding-bottom: 120px;
            /* 渐变延伸区域 */
            transition: background 0.3s, padding-bottom 0.3s, box-shadow 0.3s;
        }

        /* 滚动后状态：取消渐变，加实色背景+阴影 */
        .header-fixed.scrolled {
            background: var(--primary-color);
            padding-bottom: 0;
            box-shadow: 0 5px 7px rgba(0, 0, 0, 0.2);
        }

        /* Logo 区域 */
        .header-top {
            max-width: 1400px;
            margin: 0 auto;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: padding 0.3s;
        }

        .header-fixed.scrolled .header-top {
            padding: 8px 20px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
        }

        .college-name {
            display: inline-flex;
            flex-direction: column;
        }

        .logo-img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            /* 半透明背景，突出 logo 区域，炫光效果 */
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 11px;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .logo-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .college-name h1 {
            font-size: 28px;
            font-weight: 530;
            color: #ffffff;
            margin-bottom: 2px;
            line-height: 1.2;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            text-align: justify;
            text-align-last: justify;
            width: 100%;
        }

        .college-name p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 1px;
        }

        .header-utils {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 5px 12px;
        }

        .search-box input {
            border: none;
            background: transparent;
            outline: none;
            padding: 2px 8px;
            width: 140px;
            font-size: 13px;
            color: #fff;
        }

        .search-box input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .search-box button {
            border: none;
            background: transparent;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        /* ========== 导航栏（仿 maths.zqu.edu.cn，无背景色） ========== */
        .nav {
            /* 无背景色，叠加在轮播上方时文字为白色 */
            background: none;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            position: relative;
        }

        .nav-item {
            position: relative;
            flex: 1;
            text-align: center;
        }

        .nav-item>a {
            display: block;
            color: #fff;
            text-decoration: none;
            padding: 12px 8px;
            font-size: 15px;
            font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
            transition: var(--transition);
            white-space: nowrap;
            position: relative;
        }

        .nav-item>a::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-item>a:hover::after {
            width: 100%;
            left: 0;
            transform: translateX(0);
        }

        .nav-item>a:hover {
            color: var(--accent-color);
            background: rgba(255, 255, 255, 0.15);
        }

        /* 滚动后 hover 效果变化 */
        .header-fixed.scrolled .nav-item>a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.15);
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(0);
            background: var(--bg-white);
            min-width: 180px;
            box-shadow: var(--shadow-hover);
            display: none;
            z-index: 999;
            border-radius: 0 0 4px 4px;
            overflow: hidden;
        }

        /* 鼠标悬停一级菜单时显示二级菜单 */
        .nav-item:hover .dropdown {
            display: block;
        }

        /* 下拉菜单项 */
        .dropdown a {
            display: block;
            padding: 10px 16px;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 14px;
            border-bottom: 1px solid #eee;
            transition: background 0.3s, padding-left 0.3s;
        }

        .dropdown a:hover {
            color: #fff;
            background: var(--primary-color);
            padding-left: 20px;
        }

        /* ========== Hero 轮播区 ========== */
        /* 全宽，宽高比 3.4:1，参考 maths.zqu.edu.cn 的 dtlb-lb */
        .hero-swiper-wrapper {
            width: 100%;
            position: relative;
        }

        .swiper.hero-swiper {
            width: 100%;
            aspect-ratio: 3.4 / 1;
            position: relative;
            overflow: hidden;
        }

        .swiper.hero-swiper .swiper-slide {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .swiper.hero-swiper .swiper-slide img,
        .swiper.hero-swiper .swiper-slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .swiper.hero-swiper .swiper-slide .slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
            color: white;
            padding: 40px 30px 20px;
            font-size: 18px;
            font-weight: bold;
        }

        /* ========== UPS 风格底部导航栏 ========== */
        /* 暂停按钮 + 分页器 同行居中 */
        .ups-bottom-nav {
            width: 100%;
            text-align: center;
            position: absolute;
            bottom: 30px;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
        }

        /* 暂停/播放按钮 */
        .ups-play-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            cursor: pointer;
            margin-right: 15px;
            vertical-align: middle;
            border: none;
            background: none;
            padding: 0;
        }

        /* 暂停图标：圆圈+两竖条 */
        .ups-play-toggle .icon-pause,
        .ups-play-toggle .icon-play {
            width: 21px;
            height: 21px;
            fill: #fff;
            transition: var(--transition);
        }

        .ups-play-toggle:hover .icon-pause,
        .ups-play-toggle:hover .icon-play {
            fill: var(--accent-color);
        }

        .ups-play-toggle .icon-play {
            display: none;
        }

        .ups-play-toggle.paused .icon-pause {
            display: none;
        }

        .ups-play-toggle.paused .icon-play {
            display: inline-block;
        }

        /* UPS 风格分页器：18px 圆形，白边白底，激活态金色 */
        .hero-swiper .swiper-pagination {
            position: relative !important;
            display: inline-block;
            width: auto !important;
            /* 禁止 Swiper 撑满宽度 */
            height: 29px;
            vertical-align: middle;
            bottom: auto !important;
            flex-shrink: 1;
        }

        .hero-swiper .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: #fff;
            opacity: 1;
            box-sizing: border-box;
            border: 3px solid #fff;
            margin: 0 15px !important;
            border-radius: 100%;
            transition: all 0.3s ease;
            cursor: pointer;
            vertical-align: middle;
        }

        .hero-swiper .swiper-pagination-bullet-active {
            background: var(--accent-color);
        }

        /* UPS 风格左右箭头：白色，底部位置 */
        .hero-swiper .swiper-button-prev,
        .hero-swiper .swiper-button-next {
            background: none;
            top: auto;
            bottom: 30px;
            width: 50px;
            height: 54px;
            color: #fff;
            font-size: 68px;
        }

        .hero-swiper .swiper-button-prev {
            left: 0;
        }

        .hero-swiper .swiper-button-next {
            right: 40px;
        }

        .hero-swiper .swiper-button-prev::after,
        .hero-swiper .swiper-button-next::after {
            font-size: 36px;
            font-weight: bold;
        }

        .hero-swiper .swiper-button-prev:hover,
        .hero-swiper .swiper-button-next:hover {
            color: var(--accent-color);
        }

        /* ========== 主内容区 ========== */
        .main-content {
            max-width: 1400px;
            margin: 30px auto;
            padding: 0 20px;
        }

        .section-title {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-left: 12px;
            border-left: 4px solid var(--secondary-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .section-title a {
            font-size: 13px;
            color: var(--text-light);
            transition: var(--transition);
        }

        .section-title a:hover {
            color: var(--secondary-color);
        }

        /* ========== 学院新闻轮播（参考 yx-rotaion） ========== */
        .news-carousel-wrap {
            /* background: var(--bg-white); */
            border-radius: 8px;
            /* box-shadow: var(--shadow); */
            overflow: hidden;
            margin-bottom: 55px;
        }

        .yx-rotaion {
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 676px;
            aspect-ratio: 594 / 334;
            border-radius: 0px;
        }

        .yx-rotaion .rotaion_list {
            list-style: none;
            margin: 0;
            padding: 0;
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            /* 9/16 = 56.25%，强制 16:9 */
        }

        .yx-rotaion .rotaion_list li {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .yx-rotaion .rotaion_list li.current {
            display: block;
        }

        .yx-rotaion .rotaion_list li a {
            display: block;
            width: 100%;
            height: 100%;
        }

        .yx-rotaion .rotaion_list li img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .yx-rotaion .rotaion_list li:hover img {
            transform: scale(1.5);
        }

        .yx-rotaion-btn {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 12px;
            pointer-events: none;
            z-index: 10;
        }

        .yx-rotaion-btn span {
            pointer-events: auto;
            width: 36px;
            height: 36px;
            background: rgba(0, 0, 0, 0.35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
        }

        .yx-rotaion-btn span:hover {
            background: rgba(0, 0, 0, 0.6);
        }

        .yx-rotaion-btn span::after {
            content: '';
            display: block;
            width: 10px;
            height: 10px;
            border-top: 2px solid #fff;
            border-right: 2px solid #fff;
        }

        .yx-rotaion-btn .left_btn::after {
            transform: rotate(-135deg);
            margin-left: 4px;
        }

        .yx-rotaion-btn .right_btn::after {
            transform: rotate(45deg);
            margin-right: 4px;
        }

        .yx-rotation-t {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            display: block;
            padding: 12px 16px;
            font-size: 14px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
            color: white;
            text-decoration: none;
            transition: color 0.3s;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .yx-rotation-t:hover {
            color: var(--secondary-color);
        }

        .yx-rotation-focus {
            position: absolute;
            bottom: 8px;
            right: 16px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
            padding: 0 16px 12px;
            z-index: 10;
        }

        .yx-rotation-focus span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.9);
            cursor: pointer;
            transition: background 0.3s, border-color 0.3s;
        }

        .yx-rotation-focus span.active {
            background: var(--primary-color);
            border-color: #fff;
            width: 10px;
            height: 10px;
        }

        /* ========== 新闻区域：左侧轮播 + 右侧标题列表 各占一半 ========== */
        .news-content-flex {
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }

        /* 左侧轮播，占 50% */
        .news-content-flex .yx-rotaion {
            flex: 1 1 50%;
            min-width: 0;
        }

        /* 右侧新闻标题列表，占 50%，两列 grid */
        .news-title-grid {
            flex: 1 1 50%;
            min-width: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: repeat(4, 1fr);
            /* border-left: 1px solid #f0f0f0; */
        }

        /* 每个新闻条目 */
        .news-grid-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 14px;
            border-bottom: none;
            transition: background 0.2s;
            overflow: hidden;
            min-height: 0;
            height: 94px;
            padding-top: 10px;
            padding-bottom: 10px;
        }

        .news-grid-item:nth-of-type(-n+2) {
            border-bottom: 1px solid var(--secondary-color);
        }

        .news-grid-item:nth-of-type(n+5):nth-of-type(-n+6) {
            border-bottom: 1px solid var(--secondary-color);
        }

        /* 偶数项保留左边框 */
        .news-grid-item:nth-of-type(2n) {
            border-left: 1px solid var(--secondary-color);
        }

        /* 第二、三行左右边框线（左列保留左边框，右列加右边框） */
        .news-grid-item:nth-of-type(3),
        .news-grid-item:nth-of-type(5) {
            border-left: 1px solid var(--secondary-color);
        }

        .news-grid-item:nth-of-type(4),
        .news-grid-item:nth-of-type(6) {
            border-right: 1px solid var(--secondary-color);
        }

        .news-grid-item:hover {
            background: #f9f9f9;
        }

        /* 直接子元素 a（不在 .text 内时） */
        .news-grid-item>a {
            flex: 1;
            font-size: 16px;
            color: var(--text-dark);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            margin-right: 8px;
            line-height: 2;
            padding-left: 0.5em;
            padding-right: 0.5em;
            font-weight: 500;
        }

        .news-grid-item a:hover {
            color: var(--secondary-color);
        }

        .news-date {
            font-size: 12px;
            color: var(--text-light);
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* news-title-grid 中的 text 类允许自动换行 */
        .news-title-grid .date {
            margin-right: 8px;
        }

        .news-title-grid .text {
            flex: 1;
            min-width: 0;
        }

        .news-title-grid .text a {
            display: block;
            font-size: 16px;
            color: var(--text-dark);
            font-weight: 500;
            line-height: 1.6;
            overflow-wrap: break-word;
            word-break: break-all;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            display: -webkit-box;
            overflow: hidden;
        }

        .date {
            position: relative;
            width: 50px;
            height: 56px;
            background: #dddddd;
            border-radius: 5px;
            border-top: 3px var(--secondary-color) solid;
            text-align: center;
            flex-shrink: 0;
        }

        .date span {
            font-family: arial;
            font-size: 10px;
            color: #333;
            display: block;
            margin-top: 6px;
        }

        .date:before {
            content: '';
            position: absolute;
            left: 10px;
            top: -10px;
            width: 6px;
            height: 12px;
            background: var(--secondary-color);
            border: 3px #cccccc solid;
            border-radius: 5px;
        }

        .date:after {
            content: '';
            position: absolute;
            right: 10px;
            top: -10px;
            width: 6px;
            height: 12px;
            background: var(--secondary-color);
            border: 3px #dddddd solid;
            border-radius: 5px;
        }

        .date em {
            font-family: arial;
            font-size: 24px;
            /* color: #a62126; */
            font-style: normal;
            display: block;
            margin-top: -5px;
        }

        .fl {
            float: left;
        }

        .p_r {
            position: relative;
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .yx-rotaion .rotaion_list li img {
                height: 200px;
            }

            .news-content-flex {
                flex-direction: column;
            }

            .news-title-grid {
                border-left: none;
                border-top: 1px solid #f0f0f0;
            }
        }

        /* 信息栏目 - 三列 */
        .info-sections {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 25px;
            /* margin-bottom: 35px; */
        }

        .info-box {
            background: linear-gradient(to bottom, rgba(26,115,232,0.05), rgba(251,252,255,1) 75%);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            border: 1px solid rgba(0,0,0,0.04);
            margin-bottom: 35px;
        }

        /* btlb3-bt 标题行样式（参照 maths.zqu.edu.cn） */
        .btlb3-bt {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--bg-light);
            margin-bottom: 15px;
        }

        .btlb3-bt h3 {
            font-size: 18px;
            color: var(--primary-color);
            font-weight: 600;
        }

        .btlb3-gd {
            font-size: 13px;
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.2s;
        }

        .btlb3-gd:hover {
            color: var(--secondary-color);
        }

        .bt-img-txt {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--bg-light);
            /* margin-bottom: 15px; */
        }

        /* zhtz-list 消息列表容器 */
        .zhtz-list .noticelists:not(:last-of-type) {
            border-bottom: 1px solid #ccc;
        }

        .zhtz-list-img {
            position: relative;
            width: 100%;
            padding-top: 42.55%;
            overflow: hidden;
            margin-bottom: 10px;
            border-radius: 6px;
        }

        .zhtz-list-img img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .zhtz-list-img .img-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            padding: 8px 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3), transparent);
            text-shadow: 0 1px 4px rgba(0,0,0,0.9);
        }

        .zhtz-list .noticelists {
            padding: 12px 0;
        }

        /* noticelists 单条消息样式 */
        .noticelists {
            display: flex;
            align-items: center;
            min-height: 60px;
            position: relative;
        }

        .noticelists .posttime {
            width: 70px;
            text-align: right;
            padding-right: 15px;
            border-right: 1px solid rgba(0, 0, 0, 0.08);
            font-family: arial;
            flex-shrink: 0;
        }

        .noticelists .posttime span {
            display: block;
        }

        .noticelists .posttime .day {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary-color);
            line-height: 1.2;
        }

        .noticelists .posttime .month {
            font-size: 11px;
            color: var(--text-light);
        }

        .noticelists .postinfo {
            flex: 1;
            padding: 0 15px;
            min-width: 0;
        }

        .noticelists .postinfo p.title a {
            font-size: 15px;
            color: var(--text-dark);
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            line-height: 1.5;
        }

        .noticelists .postinfo p.title a:hover {
            color: var(--secondary-color);
        }

        /* 快速通道 */
        .quick-links {
            /* background: var(--bg-white); */
            border-radius: 8px;
            padding: 25px;
            /* box-shadow: var(--shadow); */
            margin-bottom: 35px;
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
        }

        .link-item {
            text-align: center;
            padding: 18px 8px;
            border-radius: 8px;
            background: var(--bg-white);
            transition: var(--transition);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .link-item:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .link-icon {
            font-size: 28px;
        }

        .link-item span:last-child {
            font-size: 12px;
        }

        /* ========== Footer ========== */
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 40px 0 25px;
            margin-top: 50px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 35px;
        }

        .footer-section h3 {
            font-size: 16px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        }

        .footer-section p {
            font-size: 13px;
            line-height: 2;
            opacity: 0.9;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: white;
            opacity: 0.85;
            font-size: 13px;
            transition: var(--transition);
        }

        .footer-links a:hover {
            opacity: 1;
            padding-left: 5px;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 25px auto 0;
            padding: 18px 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            font-size: 12px;
            opacity: 0.8;
        }

        /* ========== 响应式 ========== */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .header-fixed {
                background: var(--primary-color);
                padding-bottom: 0;
            }

            .nav-container {
                flex-direction: column;
                display: none;
            }

            .nav-container.active {
                display: flex;
            }

            .nav-item {
                text-align: left;
            }

            .dropdown {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                display: none;
                background: rgba(0, 0, 0, 0.1);
            }

            .nav-item.active .dropdown {
                display: block;
            }

            .hero-swiper .swiper-pagination-bullet {
                width: 12px;
                height: 12px;
                border-width: 2px;
                margin: 0 10px !important;
            }

            .hero-swiper .swiper-button-prev,
            .hero-swiper .swiper-button-next {
                bottom: 10px;
            }

            .hero-swiper .swiper-button-prev::after,
            .hero-swiper .swiper-button-next::after {
                font-size: 24px;
            }

            .ups-bottom-nav {
                bottom: 10px;
            }

            .info-sections {
                grid-template-columns: 1fr;
            }

            .links-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .header-top {
                flex-wrap: wrap;
            }

            .search-box {
                order: 3;
                width: 100%;
                margin-top: 8px;
            }

            .search-box input {
                width: 100%;
            }
        }