/* Custom styles that complement Tailwind */
body {
    scroll-behavior: smooth;
}

/* Animation for the steps */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Apply animation to steps */
.relative.md\:flex.items-center {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Delay animations for each step */
.relative.md\:flex.items-center:nth-child(1) { animation-delay: 0.1s; }
.relative.md\:flex.items-center:nth-child(2) { animation-delay: 0.3s; }
.relative.md\:flex.items-center:nth-child(3) { animation-delay: 0.5s; }
.relative.md\:flex.items-center:nth-child(4) { animation-delay: 0.7s; }

/* Custom button hover effect */
.bg-green-500:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Form input focus */
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .relative.md\:flex.items-center {
        flex-direction: column;
        text-align: center;
    }
    
    .md\:w-1\/2 {
        width: 100%;
    }
    
    .md\:pr-12, .md\:pl-12 {
        padding-right: 0;
        padding-left: 0;
    }
}