/* Contact Form Layout */
.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

/* Labels */
.contact-form label {
    font-weight: bold;
    color: #333;
}

/* Inputs, Selects, Textareas */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: #fff;
}

/* Button */
.contact-form button {
    padding: 12px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #555;
}

/* Honeypot field (hidden from users) */
.contact-form .honeypot {
    display: none;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .contact-form {
        padding: 0 10px;
    }
}
