/* Custom accent color for radio buttons to match the green theme */
input[type="radio"] {
    accent-color: #10B981;
    cursor: pointer;
}

/* Custom scrollbar for a cleaner look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

/* Slanted edge for the hero image */
.hero-slant {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}