@media only screen and (max-width: 600px) {
 .template_header { display: none; }
}

@media only screen and (min-width: 600px) {
 .home_hero_content { display: none; }
}

/* Apply gradient to standard action and custom buttons */
.stylizedButton.buttonStyle001 {
    background: linear-gradient(135deg, #f7493e 0%, #ffb221 100%) !important;
    border: none !important;
    color: #ffffff !important;
    border-radius: 20px !important;
    padding: 20px 40px !important;
    display: inline-block !important;
    text-align: center !important;
    transition: all 0.3s ease;
}

/* Add a hover effect */
.sf-button:hover, .custom-button:hover {
    background: linear-gradient(135deg, #0072FF 0%, #00C6FF 100%) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
}