html{
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif; 
}
.hero-bg {
    background: linear-gradient(45deg, #003366, #0055a4);
}
.cta-button {
    transition: all 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.benefit-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}
.benefit-card:hover {
    transform: scale(1.03);
    border-color: #fbbf24;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
/* Custom style to show placeholder for date input */
input[type="date"]:required:invalid::-webkit-datetime-edit {
    color: #6b7280;
}
.form-error-message {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    text-align: left;
    position: absolute;
    bottom: -1.1rem;
    left: 0.25rem;
}
.input-error {
    border-color: #ef4444 !important;
}