/* Custom styles that extend Tailwind */
.hero {
    background-image: url('http://static.photos/medical/1200x630/5');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

/* Animation for cards */
.custom-insurance-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-insurance-card:hover {
    transform: translateY(-5px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}