/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部导航栏样式 */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
}

/* 汉堡菜单按钮样式 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-item .nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-item .nav-link:hover {
    color: #666666;
}

.nav-item .nav-link.active {
    color: #000000;
    /* font-weight: bold; */
}

.nav-item .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
}

/* 内容容器样式 */
.content-container {
    width: 100%;
    overflow: hidden;
}

.content-section {
    display: none;
    width: 100%;
}

.content-section.active {
    display: block;
}

/* 马拉松数据和介绍区域样式 */
.marathon-data-section {
    background-color: #ffffff;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.marathon-data-section h3 {
    font-size: 28px;
    color: #000000;
    text-align: left;
    margin-bottom: 40px;
    font-weight: 700;
}

/* 左右两栏布局 */
.marathon-intro-layout {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

/* 左侧Logo区域 */
.marathon-logo {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.mls-logo {
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

/* 右侧文字内容区域 */
.marathon-text-content {
    flex: 2;
    min-width: 300px;
    text-align: left;
}

.marathon-text-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
    text-align: justify;
}

.marathon-text-content p:last-child {
    margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .marathon-data-section {
        padding: 40px 0;
    }
    
    .marathon-data-section h3 {
        font-size: 24px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .marathon-intro-layout {
        justify-content: center;
    }
    
    .marathon-logo {
        justify-content: center;
    }
    
    .marathon-text-content {
        text-align: center;
    }
    
    .marathon-text-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
        text-align: center;
    }
}

/* 大图横幅样式 */
.hero {
    background-color: #000000;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
}

.hero-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 20px;
}

/* 悉尼马拉松介绍区域样式 */
.marathon-section {
    background-color: #ffffff;
    min-height: 600px;
    padding: 60px 0;
}

.marathon-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.marathon-logo {
    flex: 1;
    background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
}

.logo-img {
    max-width: 100%;
    height: auto;
}

.marathon-info {
    flex: 2;
    background-color: #333333;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marathon-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
}

/* 关于君易行区域样式 */

/* 二维码容器样式 */
.qrcode-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.qrcode-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qrcode-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    padding: 10px;
    background-color: #ffffff;
}

.qrcode-desc {
    font-size: 16px;
    color: #333333;
    font-weight: 500;
    margin: 0;
}

/* 响应式二维码样式 */
@media (max-width: 768px) {
    .qrcode-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .qrcode-img {
        width: 180px;
        height: 180px;
    }
    
    .qrcode-desc {
        font-size: 14px;
    }
}
.about-section {
    background-color: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
}

/* Banner遮罩和内容样式 */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
} */

.banner-content {
    max-width: 800px;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.banner-content h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-description {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* 企业介绍样式 */
.company-intro {
    margin-bottom: 60px;
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.company-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-bottom: 0;
}

/* 品牌荣誉样式 */
.honors-section {
    margin-bottom: 40px;
}

.honors-section h3 {
    font-size: 20px;
    color: #1e3a8a;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.honors-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #3b82f6;
    border-radius: 1px;
}

.honors-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-items: center;
}

.honor-item {
    background-color: #fff;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    color: #555;
    min-height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-bottom: 0;
}

/* 响应式优化 */
@media (max-width: 992px) {
    .honors-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .honors-section {
        margin-bottom: 30px;
    }
    
    .honors-section h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .honors-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .honor-item {
        font-size: 13px;
        padding: 10px;
        min-height: 70px;
    }
    
    .photos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* 企业荣誉图片展示样式 */
.honor-photos {
    margin-top: 30px;
    margin-bottom: 0;
}

.honor-photos h3 {
    font-size: 20px;
    color: #1e3a8a;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.honor-photos h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #3b82f6;
    border-radius: 1px;
}

/* 酒店布局样式 */
.hotel-layout {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.hotel-image-area {
    flex: 1;
    min-width: 300px;
}

.hotel-content-area {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hotel-thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hotel-layout {
        flex-direction: column;
    }
    
    .hotel-thumbnails-grid {
        grid-template-columns: 1fr;
    }
    
    .hotel-thumbnail {
        height: 200px !important;
    }
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-items: center;
}

.photo-item {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    width: 100%;
}

.photo-caption {
    padding: 10px 12px;
    text-align: center;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.honor-photo {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background-color: #f9f9f9;
}

/* 企业荣誉响应式优化 */
@media (max-width: 768px) {
    .honor-photos {
        margin-top: 25px;
    }
    
    .honor-photos h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .honor-photo {
        height: 130px;
    }
    
    .photo-caption {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .company-intro {
        padding: 20px;
    }
    
    .honors-list {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .honor-item {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .photos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .honor-photo {
        height: 200px;
    }
    
    .hero-description {
        font-size: 18px;
        padding: 0 20px;
    }
}

/* 联系我们区域样式 */
.contact-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    border-top: 1px solid #e0e0e0;
}

.contact-section h2 {
    font-size: 32px;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

/* 标签页样式 */
.tab-container {
    background-color: #ffffff;
    padding: 40px 0;
}

/* 水平标签导航 */
.tab-nav {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    width: 100%;
}

.tab-btn {
    flex: 1;
    padding: 12px 0;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #e0e0e0;
    border-right: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.tab-btn:last-child {
    border-right: 1px solid #e0e0e0;
}

.tab-btn:hover {
    background-color: #f5f5f5;
}

.tab-btn.active {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

/* 标签页内容区域 */
.tab-content-container {
    padding: 20px 0;
}

.tab-content {
    display: none;
    width: 100%;
}

.tab-content.active {
    display: block;
}

.tab-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* 比赛信息页面样式 */
.race-info-content {
    padding: 20px 0;
}

.race-intro {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.race-intro p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 0;
}

.race-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.detail-item {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.detail-item h4 {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
}

.detail-item p {
    color: #666;
    margin-bottom: 0;
    font-size: 23px;
}

/* 套餐价格页面样式 */
.package-content {
    padding: 20px 0;
}

.package-section {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.package-section h3 {
    font-size: 22px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.package-dates,
.package-hotel,
.package-check {
    text-align: center;
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
}

/* 价格表格样式 */
.price-table {
    margin-top: 25px;
    overflow-x: auto;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
    background-color: #fff;
}

.price-table th,
.price-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.price-table th {
    background-color: #000;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.price-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.price-table tr:hover {
    background-color: #f0f0f0;
}

.price-highlight {
    font-weight: 700;
    color: #ff6600;
    font-size: 16px;
}

/* 包含/不包含内容样式 */
.inclusions-section,
.exclusions-section,
.policy-section {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
}

.inclusions-section h3,
.exclusions-section h3,
.policy-section h3 {
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.inclusions-list,
.exclusions-list {
    padding-left: 20px;
}

.inclusions-list li,
.exclusions-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}

.policy-text {
    font-size: 16px;
    color: #ff3300;
    font-weight: 500;
    margin-bottom: 10px;
}

.price-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* 响应式表格 */
@media (max-width: 768px) {
    .price-table {
        margin-top: 20px;
    }
    
    .price-table th,
    .price-table td {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .package-section {
        padding: 20px 15px;
    }
    
    .package-section h3 {
        font-size: 18px;
    }
}

/* 行程安排样式 */
.itinerary-content {
    padding: 20px 0;
}

.itinerary-content h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.day-itinerary {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #000;
}

.day-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px;
}

.day-details {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.day-details p {
    margin-bottom: 15px;
}

.day-details p:last-child {
    margin-bottom: 0;
}

/* 特殊样式处理 */
.day-title:nth-child(1) {
    background-color: #f0f0f0;
}

/* 酒店介绍样式 */
.hotel-content {
    padding: 20px 0;
}

.hotel-section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hotel-header h3 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.hotel-gallery {
    margin-bottom: 20px;
}

.hotel-main-img {
    width: 80%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 15px;
    display: block;
    transition: transform 0.3s ease;
}

.hotel-main-img:hover {
    transform: scale(1.02);
}

.hotel-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.hotel-thumbnail {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hotel-thumbnail:hover {
    border-color: #3498db;
    transform: scale(1.05);
}

.hotel-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0;
}

/* 酒店地图样式 */
.hotel-map-section {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hotel-map-section h3 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

/* 地图左右布局样式 */
.map-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* 左侧地图图片区域 */
.map-image-area {
    flex: 1;
    min-width: 0;
}

.hotel-map {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 右侧地图描述区域 */
.map-info-area {
    flex: 1;
    min-width: 0;
}

.map-description h4 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 10px;
}

.map-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

/* 地理位置优势列表样式 */
.location-features {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.location-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #666;
    line-height: 1.5;
}

.location-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .map-layout {
        flex-direction: column;
    }
    
    .map-image-area,
    .map-info-area {
        width: 100%;
    }
}

/* 响应式行程安排 */
@media (max-width: 768px) {
    .itinerary-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .day-itinerary {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .day-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .day-details {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* 酒店介绍响应式 */
    .hotel-section {
        padding: 15px;
    }
    
    .hotel-header h3 {
        font-size: 18px;
    }
    
    .hotel-thumbnail {
        width: 100px;
        height: 70px;
    }
    
    .hotel-description p {
        font-size: 14px;
    }
    
    /* 酒店地图响应式 */
    .hotel-map-section {
        padding: 15px;
        margin-top: 30px;
    }
    
    .hotel-map-section h3 {
        font-size: 18px;
    }
    
    .hotel-map {
        max-height: 300px;
    }
    
    .map-description {
        font-size: 14px;
    }
}

/* 预定通道样式 */
.booking-content {
    padding: 20px 0;
}

.booking-content h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.booking-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.qrcode-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.qrcode-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qrcode-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.qrcode-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.qrcode-desc {
    font-size: 14px;
    color: #333;
    text-align: center;
    margin-bottom: 0;
    font-weight: 500;
}

.booking-note {
    font-style: italic;
    color: #7f8c8d;
    font-size: 14px;
}

/* 响应式预定通道 */
@media (max-width: 768px) {
    .qrcode-container {
        gap: 20px;
    }
    
    .qrcode-item {
        padding: 15px;
    }
    
    .qrcode-img {
        width: 160px;
        height: 160px;
    }
    
    .booking-content h3 {
        font-size: 20px;
    }
}

/* 页脚样式 */
.footer {
    background-color: #f5f5f5;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    color: #666666;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 76px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        gap: 0;
        z-index: 1000;
        padding: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-item .nav-link {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 16px;
    }
    
    /* 汉堡菜单动画 */
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        height: 300px;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: 10px;
    }
    
    .marathon-content {
        flex-direction: column;
    }
    
    .marathon-logo,
    .marathon-info {
        flex: none;
        width: 100%;
    }
}