.hero-reverse .wp-block-button__link {
    background: #0066CC !important;
    color: #FFFFFF !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 13px 28px !important;
    border: none !important; /* Removed aggressive black border */
    border-radius: 8px !important; /* Changed from 50px to a premium soft corner */
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25), 0 1px 3px rgba(0, 0, 0, 0.08) !important; /* Premium soft glow instead of hard black shadow */
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.2s ease !important; /* Smoother premium animation response */
}

.hero-reverse .wp-block-button__link:hover {
    transform: translateY(-2px) !important; /* Gentle premium lift */
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35), 0 2px 4px rgba(0, 0, 0, 0.1) !important; /* Enhanced clean hover shadow */
}

.hero-reverse .wp-block-button__link:active {
    transform: translateY(1px) !important; /* Premium tactile click effect when pressed */
    box-shadow: 0 2px 6px rgba(0, 102, 204, 0.2) !important;
}

