@charset "utf-8";

:root {
    /* Theme Colors - Fresh & Reliable Blue */
    --primary-color: #00A0E9;
    --primary-dark: #0068B7;
    --primary-gradient: linear-gradient(135deg, #00A0E9, #0068B7);

    /* Global Brand Accent (Solid) */
    --accent-color: #FFB11B;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);

    /* Neutral Colors */
    --text-dark: #2C3E50;
    --text-gray: #555;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --border-color: #E0E0E0;
}

/* ========================================
   Travel Routes - Ticket Style Cards 
   ======================================== */

.tour-card.theme-blue {
    --ticket-color: #00A0E9;
}

.tour-card.theme-orange {
    --ticket-color: #FFB74D;
}

.tour-card.theme-green {
    --ticket-color: #66BB6A;
}

.tour-card.theme-pink {
    --ticket-color: #F48FB1;
}

.tour-card.theme-purple {
    --ticket-color: #B39DDB;
}

.tour-card.theme-teal {
    --ticket-color: #4DD0E1;
}

.tour-card {
    display: flex;
    align-items: stretch;
    margin-bottom: 50px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-main-section {
    flex: 1;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tour-stub-section {
    width: 150px;
    background: var(--ticket-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    color: #fff;
}

.tour-images {
    display: flex;
    gap: 10px;
    width: 200px;
    height: 140px;
}

.tour-image-large {
    flex: 2;
    border-radius: 8px;
    overflow: hidden;
}

.tour-image-small {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.tour-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-content {
    flex: 1;
}

.tour-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tour-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.tour-btn {
    display: inline-block;
    padding: 6px 18px;
    border: 1.5px solid var(--ticket-color);
    color: var(--ticket-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.tour-btn:hover {
    background: var(--ticket-color);
    color: #fff;
}

.location-pill {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 11px;
    text-align: center;
}

.tour-detail-page {
    background-color: #fff;
    color: var(--text-dark);
}

.tour-detail-hero {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.tour-detail-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.tour-quick-info {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.info-badge {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-badge i {
    color: var(--primary-color);
    font-size: 16px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    /* 左侧2份宽度，右侧两列各1份 */
    grid-template-rows: repeat(2, 250px);
    /* 两行等高 */
    gap: 12px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.01);
    z-index: 10;
    filter: brightness(1.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    /* 纵跨两行 */
}

.view-all-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: background 0.3s ease;
}

.view-all-overlay:hover {
    background: rgba(0, 0, 0, 0.75);
}

.view-all-btn {
    background: #00a7ea;
    /* 纯黄色(与原有设计一致) */
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.2);
}

.view-all-btn:hover {
    transform: translateY(-2px);
}

/* ========================================
   Gallery Modal (Swiper)
   ======================================== */

.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.gallery-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    z-index: 10000;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: white;
    color: var(--primary-color);
    transform: rotate(90deg);
}

.tour-gallery-swiper {
    width: 90%;
    max-width: 1000px;
    height: 70vh;
}

.tour-gallery-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-gallery-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.tour-gallery-swiper .swiper-button-next,
.tour-gallery-swiper .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.tour-gallery-swiper .swiper-button-next:after,
.tour-gallery-swiper .swiper-button-prev:after {
    font-size: 20px;
}

.tour-gallery-swiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.tour-gallery-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

/* ========================================
   Feature Cards
   ======================================== */

.tour-features {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    /* 自动填充：保证在 1200px 下能横向排开 4 个，宽度不足时整齐折行 */
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    /* 水平结构：图标左，文字右 */
    align-items: center;
    gap: 12px;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    background: white;
}

.feature-icon {
    width: 38px;
    height: 38px;
    background: var(--primary-gradient);
    border-radius: 8px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 160, 233, 0.1);
}

.feature-icon i {
    font-size: 16px;
    color: white;
}

.feature-info {
    flex: 1;
}

.feature-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
    white-space: nowrap;
    /* 标题不换行 */
}

.feature-card p {
    font-size: 14px;
    /* 从 12px 上调 */
    color: var(--text-gray);
    line-height: 1.5;
}

/* 移动端适配 */
@media (max-width: 580px) {
    .tour-features {
        grid-template-columns: 1fr;
        /* 手机端单列 */
    }
}

/* ========================================
   Content Section (Highlights, Itinerary, etc.)
   ======================================== */

.tour-content-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* Highlights Grid Design */
.highlights-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 桌面端改为两列 */
    gap: 12px;
    /* 紧凑间距 */
}

.highlights-list li {
    background: #f9fbff;
    /* 极其微弱的蓝色底 */
    border: 1px solid #edf2f7;
    padding: 12px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.highlights-list li:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 160, 233, 0.05);
}

.highlight-icon {
    width: 24px;
    height: 24px;
    background: white;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
}

.highlights-list li span {
    font-size: 15px;
    /* 从 14px 上调 */
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

/* 即使是奇数个，最后一个也可以占满一行或保持对齐 */
.highlights-list li:nth-child(5) {
    grid-column: span 1;
    /* 保持一致性 */
}

@media (max-width: 768px) {
    .highlights-list {
        grid-template-columns: 1fr;
        /* 移动端回退到单列 */
    }
}

/* Professional Slim Journey Path */
.itinerary-timeline {
    position: relative;
    padding-left: 50px;
    /* 给左侧轴线留出空间 */
    margin-top: 20px;
    display: block;
    /* 回到块级布局 */
}

/* 核心轴线：细而高级 */
.itinerary-timeline:before {
    content: '';
    position: absolute;
    left: 22px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: linear-gradient(to bottom,
            var(--primary-color) 0%,
            #e0e0e0 100%);
    display: block !important;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.timeline-item:hover {}

/* 节点：改用小而精致的圆点 */
.timeline-item:before {
    content: '';
    position: absolute;
    left: -33px;
    /* 精准对齐轴线 */
    top: 5px;
    width: 8px;
    height: 8px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    z-index: 2;
    display: block !important;
}

.timeline-item:hover:before {
    box-shadow: 0 0 0 4px rgba(0, 160, 233, 0.1);
    background: var(--primary-color);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.day-label {
    background: var(--primary-color);
    color: white;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.day-city {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
}

.timeline-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.timeline-item p {
    font-size: 14.5px;
    /* 从 13px 上调 */
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.timeline-item small {
    display: inline-block;
    margin-top: 5px;
    padding: 3px 8px;
    background: rgba(0, 160, 233, 0.05);
    border-radius: 4px;
    font-size: 11px;
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .itinerary-timeline {
        padding-left: 35px;
    }

    .itinerary-timeline:before {
        left: 11px;
    }

    .timeline-item:before {
        left: -24.5px;
    }
}

.timeline-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-item p {
    font-size: 13.5px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.timeline-item small {
    display: block;
    margin-top: 8px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 12px;
}

@media (max-width: 992px) {
    .itinerary-timeline {
        grid-template-columns: 1fr;
        /* 平板及以下改回单列 */
    }
}

/* Included / Not Included */
/* Inclusion/Exclusion Panel Design */
.inclusion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    /* 增加极淡的背景底色 */
    border-radius: 20px;
    border: 1px solid #f1f4f8;
    margin-top: 25px;
}

.inclusion-column {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.inclusion-column h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.inclusion-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.inclusion-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--text-gray);
    line-height: 1.5;
}

.inclusion-list.included li:before {
    content: '✓';
    color: #27AE60;
    background: rgba(39, 174, 96, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.inclusion-list.excluded li:before {
    content: '✕';
    color: #E74C3C;
    background: rgba(231, 76, 60, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

/* Refined Important Info Panel */
.important-info {
    background: #f8fafc;
    /* 极淡蓝灰色，更稳重 */
    border: 1px solid #e2e8f0;
    padding: 20px 25px;
    border-radius: 12px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.important-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    white-space: nowrap;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 4px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.important-info h3 i {
    font-size: 14px;
    color: #f59e0b;
    /* 仅保留图标的警告色 */
}

.important-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    align-self: center;
    line-height: 1.5;
    margin-bottom: 15px;
}

.important-info p:last-child {
    margin-bottom: 0;
}

.important-highlight {
    color: var(--primary-dark);
    background: rgba(0, 160, 233, 0.1);
    /* 非常淡的主色蓝 */
    padding: 3px 12px;
    border-radius: 6px;
    font-weight: 700;
    margin-left: 2px;
    border: 1px solid rgba(0, 160, 233, 0.2);
}

/* Meeting Point Style - Refined with Button & Flex */
.meeting-point-info {
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    padding: 15px 25px;
    border-radius: 12px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.meeting-point-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    white-space: nowrap;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meeting-point-info h3 i {
    color: #ef4444;
    /* Map marker red */
}

.meeting-point-info .info-body {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.meeting-point-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #fff;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color) !important;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.map-btn:hover {
    background: var(--primary-color);
    color: #fff !important;
}

/* Mobile adjust for meeting point */
@media (max-width: 600px) {
    .meeting-point-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .meeting-point-info .info-body {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .map-btn {
        width: 100%;
        justify-content: center;
    }
}

.related-tours {
    max-width: 1200px;
    margin: 80px auto 0px;
    padding: 0 20px;
}

.related-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.related-tour-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.related-tour-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.related-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-tour-card:hover .related-tour-image img {
    transform: scale(1.1);
}

.related-tour-content {
    padding: 25px;
}

.related-tour-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.related-tour-content p {
    font-size: 14.5px;
    /* 上调相关旅游描述 */
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.related-tour-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.related-tour-link:hover {
    gap: 12px;
}

/* ========================================
   Sticky Action Bar
   ======================================== */

.sticky-action-bar {
    position: fixed;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 12px 20px;
    border-radius: 50px;
    z-index: 2000;
    display: flex;
    justify-content: center;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s backwards;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.action-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.action-text {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    margin-right: 15px;
}

.action-btn {
    background: #ff704f;
    /* 核心行动色 */
    color: white !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 112, 79, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.action-btn:hover {
    transform: scale(1.05);
    background: #e65a3d;
    box-shadow: 0 6px 20px rgba(255, 112, 79, 0.3);
}

.action-btn i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .sticky-action-bar {
        bottom: 10px;
        width: 95%;
        padding: 8px 15px;
    }

    .action-text {
        font-size: 12px;
        margin-right: 10px;
    }

    .action-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .tour-detail-title {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        /* 移动端改为2列 */
        grid-template-rows: 300px 150px 150px;
    }

    .gallery-main {
        grid-column: 1 / 3;
        /* 大图占满第一行 */
        grid-row: 1 / 2;
    }

    .tour-features {
        grid-template-columns: 1fr;
    }

    .inclusion-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .related-tours-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 24px;
    }

    .itinerary-timeline {
        padding-left: 30px;
    }

    .floating-inquiry-btn {
        bottom: 20px;
        right: 20px;
        padding: 15px 25px;
        font-size: 14px;
    }

    .tour-gallery-swiper {
        width: 95%;
        height: 50vh;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .tour-detail-title {
        font-size: 24px;
    }

    .info-badge {
        font-size: 12px;
        padding: 6px 15px;
    }

    .timeline-item h3 {
        font-size: 18px;
    }

    .timeline-item p {
        font-size: 14px;
    }
}