body {
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1200px;
}

input, select, textarea {
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

button {
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-1px);
}