/* ---------- CONTACT FORM ---------- */
.contact-form {
    max-width: 500px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 16px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: #ffffff;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-top: 6px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    resize: vertical;
}

.contact-form button {
    padding: 14px;
    border: none;
    border-radius: 8px;
    background-color: #4d4d4d;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #333333;
}

textarea {
    font-family: "Century Gothic", Avenir, sans-serif;
}