/* ============================================================================
 * SPONSOR PAGE - ANIMATION DELAY FIX
 * External CSS to replace inline animation-delay styles
 * Preserves original design from sponsor.css
 * ============================================================================ */

/* Animation delays for hero benefits - MUST MATCH ORIGINAL INLINE STYLES */
.benefit-item-delay-1 {
    animation-delay: 0.1s;
}

.benefit-item-delay-2 {
    animation-delay: 0.2s;
}

.benefit-item-delay-3 {
    animation-delay: 0.3s;
}

.benefit-item-delay-4 {
    animation-delay: 0.4s;
}

.benefit-item-delay-5 {
    animation-delay: 0.5s;
}

/* Ensure animation keyframes are available */
@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(15px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}