/* --- Form Container Styling --- */
.form {
    /* "auto" on the left/right centers the form. 
       "50px" on the top creates the space between the header and form. */
    margin: 50px auto; 
    
    /* Restrict width so it looks like a card */
    max-width: 500px; 
    width: 90%;
    
    /* Visuals */
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    
    /* Layout for inputs */
    display: flex;
    flex-direction: column;
}

.contact-us {
    font-size: 2.5rem !important;
    text-align: center;
    margin-top: 1.75rem;
}

/* --- Labels --- */
.form label {
    font-family: 'Montserrat', sans-serif; /* Matching your font imports */
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    margin-top: 20px; /* Spacing between previous input and next label */
}

/* Remove top margin from the very first label */
.form label:first-of-type {
    margin-top: 0;
}

/* --- Inputs and Textarea --- */
.form input,
.form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: #4a90e2; /* Change this color to match your brand */
}

.form textarea {
    resize: vertical; /* Allows user to make it taller but not wider */
    min-height: 120px;
}

/* --- Submit Button --- */
.form button {
    margin-top: 30px;
    padding: 15px;
    background-color: #333; /* Dark button */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form button:hover {
    background-color: #555; /* Slightly lighter on hover */
}

