/* Contact section styles */
.contact {
    background-color: var(--bg-light);
    text-align: center;
}

.contact-form {
    max-width: 32rem;
    margin: 0 auto;
}

.contact-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}