<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.hero_text{
    line-height: 3.5;
}

@media (max-width: 768px) {
    .hero_text{
        line-height: 2;
    }
    .hero ~ .container .hero_text p{
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
}

.flight {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin: 20px auto;
    overflow: hidden;
}

/* Flight Route Summary Card */
.flight-route-summary {
    padding: 24px;
    background-color: white;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
}

.route-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 24px;
}

.route-display::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 2px;
    background-color: var(--gray-200);
    z-index: 1;
}

.route-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background-color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.route-endpoint {
    position: relative;
    z-index: 2;
    background-color: white;
    padding: 10px;
}

.airport-code {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.airport-name {
    font-size: 14px;
    color: var(--secondary);
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.datetime {
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
    margin-top: 5px;
}

.flight-details-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: 14px;
}

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

/* Flight Segments */
.flight-segments {
    padding: 0 24px 24px;
}

.segment-divider {
    display: flex;
    align-items: center;
    color: var(--secondary);
    font-size: 14px;
    margin: 16px 0;
}

.segment-divider::before,
.segment-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--gray-200);
}

.segment-divider::before {
    margin-right: 16px;
}

.segment-divider::after {
    margin-left: 16px;
}

.flight-segment {
    background-color: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.flight-segment:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gray-300);
}

.segment-header {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-200);
}

.airline-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.airline-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.airline-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 2px;
}

.flight-number {
    color: var(--secondary);
    font-size: 14px;
}

.segment-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.baggage-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: var(--gray-100);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 500;
}

.details-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.details-toggle:hover {
    background-color: var(--primary);
    color: white;
}

.segment-route {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.segment-route::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 110px;
    right: 110px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    z-index: 1;
}

.airport {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background-color: white;
    padding: 0 10px;
}

.airport-time {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.airport-date {
    font-size: 13px;
    color: var(--secondary);
}

.airport-city {
    font-size: 14px;
    color: var(--dark);
    font-weight: 600;
}

/* Details Accordion */
.accordion-details {
    margin-top: 8px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: white;
}

.flight-details-header {
    background-color: var(--primary);
    color: white;
    padding: 12px 16px;
    font-weight: 600;
}

.flight-details-body {
    padding: 20px;
    background-color: white;
}

.detail-row {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.detail-label {
    width: 150px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.detail-value {
    flex: 1;
    color: var(--secondary);
    font-size: 14px;
}

.refundable-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 16px;
}

.refundable-badge.yes {
    background-color: var(--success-light);
    color: var(--success);
}

.refundable-badge.no {
    background-color: var(--danger-light);
    color: var(--danger);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .route-display {
        flex-direction: column;
        gap: 50px;
        padding: 30px 0;
    }
    
    .route-display::before {
        top: 50%;
        left: 50%;
        width: 2px;
        height: 40px;
        transform: translateX(-50%);
    }
    
    .route-indicator {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .segment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .segment-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .segment-route {
        flex-direction: column;
        gap: 40px;
        padding: 30px 16px;
    }
    
    .segment-route::before {
        left: 50%;
        top: 90px;
        width: 2px;
        height: 40px;
        transform: translateX(-50%);
    }
    
    .airport {
        align-items: center;
        text-align: center;
    }
    
    .detail-row {
        flex-direction: column;
        margin-bottom: 16px;
    }
    
    .detail-label {
        width: 100%;
        margin-bottom: 4px;
    }
}</pre></body></html>