/* Custom styles */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

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

/* Form input focus styles */
input:focus, select:focus {
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

/* Card hover effect */
.bg-white {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Feather icons alignment */
[data-feather] {
    vertical-align: middle;
}