* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #957021;
    --secondary-color: #7E352C;
    --text-color: #666666;
    --light-bg: #FFFBEF;
    --dark-bg: #7E352C;
    --accent-color: #A48B37;
}

body {
    font-family: 'Source Han Serif SC', serif;
    color: var(--text-color);
    background: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 264px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 115px;
    z-index: 1000;
    background: #957021;
}

.header-content {

    margin: 0 auto;
    width: 100%;
    height: 115px;
    background: #957021;
}

.header-top {
    width: 100%;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-top > div {
    width: 100%;
    max-width: 1920px;
    padding: 0 264px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.header-top p {
    color: #ffffff;
    font-size: 14px;
    font-family: 'Source Han Serif SC', serif;
    font-weight: 400;
}

.header-info {
    display: flex;
    gap: 55px;
}

.phone,
.notice,
.info {
    font-size: 14px;
    font-family: 'Source Han Serif SC', serif;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
}

.phone img,
.notice img,
.info img {
    width: 14px;
    height: 14px;
}

.header-nav {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-nav > div {
    width: 100%;
    max-width: 1920px;
    padding: 0 264px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 51px;
    height: 50px;
}

.logo-text h1 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 2px;
    font-family: 'Source Han Serif SC', serif;
}

.logo-en {
    color: #ffffff;
    font-size: 8px;
    letter-spacing: 0.5px;
    font-weight: 300;
    font-family: 'Source Han Serif SC', serif;
}

.nav-menu {
    display: flex;
    gap: 38px;
    list-style: none;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.8px;
    font-family: 'Source Han Serif SC', serif;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #957021;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 950px;
    margin-top: 115px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    left: 296px;
    top: 407px;
}

.hero-text {
    color: #D3A74A;
}

.hero-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.hero-icons img {
    width: 40px;
    height: 40px;
}

.hero-text h2 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1.3px;
    margin-bottom: 8px;
}

.hero-text p {
    font-size: 12px;
    opacity: 0.8;
}

.carousel-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
}

.carousel-btn svg {
    color: var(--secondary-color);
}

.carousel-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--secondary-color);
}

/* Notice Bar */
.notice-bar {
    background: rgba(149, 112, 33, 0.1);
    padding: 18px 0;
}

.notice-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-item svg {
    width: 16px;
    height: 16px;
}

.notice-item span {
    color: #7E352C;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.48px;
}

.view-more {
    color: #7E352C;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    color: var(--secondary-color);
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 8px;
}

.title-en {
    color: #999999;
    font-size: 12px;
    letter-spacing: 0.6px;
    margin-bottom: 5px;
}

.title-sub {
    color: rgba(153, 153, 153, 0.6);
    font-size: 12px;
    letter-spacing: 0.6px;
}

.view-more-btn {
    position: absolute;
    right: 0;
    top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #957021;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(149, 112, 33, 0.05) 0%, white 100%);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
}

.intro-text .section-header {
    text-align: left;
}

.section-title h2 {
    color: #742212;
}

.intro-description {
    margin: 40px 0;
}

.intro-description h3 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
}

.intro-description p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-number span {
    font-size: 16px;
    font-weight: 400;
    margin-left: 5px;
}

.stat-label {
    color: #999999;
    font-size: 16px;
    margin-bottom: 5px;
}

.stat-en {
    color: #999999;
    font-size: 12px;
    letter-spacing: 0.36px;
}

.intro-video {
    display: flex;
    align-items: center;
}

.video-thumbnail {
    position: relative;
    width: 450px;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 46px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.play-btn,
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-btn:hover,
.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.play-btn img,
.video-play-btn img {
    width: 50px;
    height: 50px;
}

/* Scenic Section */
.scenic-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.scenic-section .section-header h2,
.scenic-section .section-header .title-sub {
    color: #E4E2D4;
}

.scenic-section .view-more-btn {
    color: #7E352C;
}

.scenic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.scenic-card {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.scenic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.scenic-image {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.scenic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scenic-card:hover .scenic-image img {
    transform: scale(1.05);
}

.scenic-badge {
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #E5DCCF;
    font-size: 16px;
}

.scenic-location {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    color: #E5DCCF;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scenic-info {
    padding: 24px;
}

.scenic-info h3 {
    color: #EBEBD0;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 12px;
}

.scenic-info p {
    color: rgba(235, 235, 208, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

/* Panorama Section */
.panorama-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #527678 0%, #394F6C 100%);
}

.panorama-section .section-header h2,
.panorama-section .section-header .title-sub {
    color: #957021;
}

.panorama-content {
    position: relative;
    height: 800px;
}

.panorama-map {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panorama-map > img {
    max-width: 100%;
    max-height: 100%;
}

.panorama-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 410px;
    height: 409px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.panorama-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-marker {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-marker:hover {
    transform: scale(1.1);
}

.map-marker .marker-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.map-marker .marker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.marker-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    white-space: nowrap;
}

.marker-1 {
    top: 529px;
    left: 262px;
}

.marker-2 {
    top: 469px;
    right: 262px;
}

.panorama-nav {
    position: absolute;
    top: 328px;
    right: 1246px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(126, 53, 44, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.panorama-nav:hover {
    background: rgba(126, 53, 44, 0.2);
}

.panorama-nav svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.video-section .section-header h2,
.video-section .section-header .title-sub {
    color: white;
}

.video-section .view-more-btn {
    color: var(--secondary-color);
}

.video-accordion {
    display: flex;
    height: 700px;
    gap: 10px;
    overflow: hidden;
}

.video-item {
    position: relative;
    height: 100%;
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 120px;
}

.video-item-cover {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.video-item-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    transition: all 0.5s ease;
}

.video-item:hover .video-item-cover::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.video-item-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-item:hover .video-item-cover img {
    transform: scale(1.05);
}

.video-item-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    color: white;
    font-size: 24px;
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.video-item-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(126, 53, 44, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-item.active {
    flex: 5;
    cursor: default;
}

.video-item.active .video-item-content {
    opacity: 1;
    visibility: visible;
}

.video-item.active .video-item-title {
    opacity: 0;
}

.video-item.active .video-item-cover img {
    transform: scale(1.1);
}

.video-item-info h3 {
    color: white;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-item-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

.video-item-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.video-item-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.video-item-play-btn img {
    width: 70px;
    height: 70px;
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: #394F6C;
}

.news-section .section-header h2,
.news-section .section-header .title-sub {
    color: #943E23;
}

.news-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.news-tab {
    width: 154px;
    height: 56px;
    border: none;
    border-radius: 8px;
    background: white;
    color: #943E23;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-tab.active,
.news-tab:hover {
    background: #FFF4D8;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.news-card img {
    width: 100%;
    height: 344px;
    object-fit: cover;
}

.news-content {
    padding: 24px;
}

.news-content h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-content p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-meta {
    color: #999999;
    font-size: 12px;
}

/* Activities Section */
.activities-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.activities-section .section-header h2,
.activities-section .section-header .title-sub {
    color: #E4E2D4;
}

.activities-section .view-more-btn {
    color: var(--secondary-color);
}

.activities-slider {
    position: relative;
    display: flex;
    align-items: center;
}

.activities-nav {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    flex-shrink: 0;
}

.activities-nav:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.activities-nav svg {
    color: var(--secondary-color);
}

.activities-nav.prev {
    margin-right: 20px;
}

.activities-nav.next {
    margin-left: 20px;
}

.activities-track {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    overflow: hidden;
}

.activity-card {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    opacity: 0.5;
    transform: scale(0.75);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.activity-card:not(.active):hover {
    opacity: 0.7;
    transform: scale(0.8);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.activity-card.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.activity-card.active {
    width: 580px;
}

.activity-card.active img {
    height: 450px;
}

.activity-card:not(.active) {
    width: 380px;
}

.activity-card:not(.active) img {
    height: 320px;
}

.activity-card img {
    width: 100%;
    object-fit: cover;
}

.activity-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.activity-info h3 {
    color: #EDE5CB;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.activity-info p {
    color: rgba(237, 229, 203, 0.75);
    font-size: 14px;
    line-height: 1.6;
}

/* Footer */
.footer {
    position: relative;
    background: #E9E4D1;
    padding: 100px 0 50px;
}

.footer-content {
    width: 100%;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #7E352C;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.8px;
    font-family: 'Source Han Serif SC', serif;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #957021;
}

.footer-nav .divider {
    color: #957021;
    font-size: 20px;
    font-weight: 300;
    opacity: 0.8;
    margin: 0 5px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: #7E352C;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.36px;
    font-family: 'Source Han Serif SC', serif;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.video-modal.show {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    transform: scale(1.1);
}

.video-player {
    width: 100%;
    background: black;
    border-radius: 8px;
    overflow: hidden;
}

.video-player video {
    width: 100%;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1440px) {
    .container {
        padding: 0 100px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 50px;
    }

    .header-top .container,
    .header-nav .container {
        padding: 0 50px;
    }

    .scenic-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .activities-track {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-top {
        display: none;
    }

    .header-nav .container {
        padding: 12px 20px;
    }

    .nav-menu {
        display: none;
    }

    .intro-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .scenic-grid {
        grid-template-columns: 1fr;
    }

    .panorama-content {
        height: auto;
        padding: 40px 0;
    }

    .panorama-map > img {
        width: 100%;
    }

    .map-marker {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin: 20px;
    }

    .marker-label {
        position: static;
        transform: none;
        margin-top: 10px;
    }

    .video-track {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .activities-track {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .activity-card {
        width: 300px !important;
    }

    .activity-card.large {
        width: 300px !important;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 28px;
    }

    .view-more-btn {
        position: static;
        margin-top: 20px;
    }

    .news-tabs {
        flex-wrap: wrap;
    }

    .news-tab {
        flex: 0 0 calc(50% - 10px);
    }
}
