#header {
    display: none !important;
}


/* Keyframes for the pulsing animation */
@keyframes pulse-button {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Target Zoho's header button and apply styling */
/* You might need to inspect your live Zoho page to find the exact class or ID for your header button. */
/* Common Zoho button classes might be: .lp-header-button, .lp-cta-button, .lp-button, or similar. */
/* Replace `.YOUR_ZOHO_HEADER_BUTTON_CLASS` with the actual class/ID you find. */

.YOUR_ZOHO_HEADER_BUTTON_CLASS {
    background-color: #E8490F !important; /* Your conversion accent color */
    color: #FFFFFF !important;
    animation: pulse-button 2s infinite !important;
    /* Ensure other styles match your brand, e.g., border-radius, padding */
    border-radius: 10px !important;
    padding: 15px 30px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.YOUR_ZOHO_HEADER_BUTTON_CLASS:hover {
    background-color: #d1400e !important; /* Slightly darker on hover */
    transform: translateY(-2px) !important;
}
