/* Estilos específicos para el Centro de Ayuda */
.help-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 3rem 1rem;
    border-radius: 0.5rem;
    color: white;
    margin-bottom: 2rem;
}

.help-hero h1 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-primary-light {
    background-color: rgba(59, 130, 246, 0.1);
}

.bg-success-light {
    background-color: rgba(16, 185, 129, 0.1);
}

.bg-info-light {
    background-color: rgba(6, 182, 212, 0.1);
}

.hover-effect:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(59, 130, 246, 0.05);
    color: #1e3a8a;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(59, 130, 246, 0.25);
}

.help-container {
    background-color: #f8fafc;
}

.contact-help {
    background: linear-gradient(to right, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
}

.flight-status-badge {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.status-ontime { background-color: #28a745; }
.status-delayed { background-color: #ffc107; }
.status-cancelled { background-color: #dc3545; }
.status-diverted { background-color: #17a2b8; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .help-hero {
        padding: 2rem 1rem;
    }
    
    .help-hero h1 {
        font-size: 2rem;
    }
}