.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 3px;
    border: 1px solid #ddd;
    padding: 0.75rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.contact-form .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 3px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.15s ease-in-out;
}

.contact-form .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.contact-form .btn-outline-secondary {
    border-radius: 3px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.15s ease-in-out;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}