/* Base Styles */
body {
    line-height: 1.6;
    color: #1F2937;
}

/* Form Styling */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.5);
}

/* Button Hover Effects */
button:hover,
a[href="#form"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

section {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-5xl {
        font-size: 2.5rem;
    }
    .text-4xl {
        font-size: 2rem;
    }
}

/* Accessibility Focus Styles */
*:focus {
    outline: 2px solid #3B82F6;
    outline-offset: 2px;
}