@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}
/* Custom animation for the lead form */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.lead-form-animation {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Spinner animation */
.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Lead results styling */
#lead-results {
    animation: fadeIn 0.6s ease-out forwards;
}

#lead-results h3 {
    color: #4f46e5;
}
/* Custom button styles */
.btn-primary {
    background-color: #4f46e5;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-text {
        font-size: 2.5rem;
    }
}