    .tour-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.section-header i {
    color: #1c5b7b;
    font-size: 24px;
}

.section-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 24px;
}

.section-divider {
    text-align: center;
    margin: 30px 0;
}

.divider-icon {
    font-size: 32px;
    background: white;
    padding: 0 20px;
}

.itinerary-title {
    color: #1c5b7b;
    margin-bottom: 25px;
    text-align: center;
    font-size: 20px;
}

.itinerary-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    background: #1c5b7b;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-content {
    flex: 1;
}

.step-content strong {
    color: #2c3e50;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.step-content p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}