.tour-header-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFF9F0;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.tour-header-title {
    flex: 1;
}

.tour-header-title h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    color: #1A1A1A;
    line-height: 1.2;
}

.tour-header-title .subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-top: 0.5rem;
}

.tour-duration-badge {
    background-color: #FF9800;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
    font-weight: 600;
}

.tour-duration-badge .number {
    font-size: 2rem;
    display: block;
    line-height: 1;
}

.tour-duration-badge .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    .tour-details-container{
        padding: 0 15px;
    }
    .tour-header-banner {
        flex-direction: column;
        padding: 1.2rem;
        display: none;
    }
    
    .tour-header-title {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .tour-header-title h1 {
        font-size: 1.8rem;
    }
    
    .tour-duration-badge {
        padding: 0.8rem 1.5rem;
    }
}


/* Tour Overview Styles */
.tour-section {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.section-content {
    padding: 1.5rem;
}

.overview-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.overview-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feature-item i {
    color: #28a745;
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

.feature-item span {
    font-size: 0.95rem;
    color: #555;
}