/* Custom styles to complement Tailwind */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom focus styles */
:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.5);
}

/* Form error states */
input:invalid, textarea:invalid, select:invalid {
    border-color: #f56565;
}

input:invalid:focus, textarea:invalid:focus, select:invalid:focus {
    box-shadow: 0 0 0 3px rgba(245, 101, 101, 0.5);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hero-content {
        text-align: center;
    }
}

/* Animation for form success message */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#form-success {
    animation: fadeIn 0.5s ease-out forwards;
}