/* Styles for the Contact Us page */
.contact-us-container {
    background-color: white;
    padding: 40px;
    margin: 40px auto;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-us-container h1 {
    font-family: Arial, sans-serif;
    color: #003333;
    text-align: left;
}

.contact-us-container p {
    font-family: Arial, sans-serif;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.contact-us-container .required {
    color: #FF69B4; /* Pink color */
    margin-left: 5px; /* Adds some spacing between label text and asterisk */
    font-weight: bold;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-weight: bold;
    color: #333;
}

select,
input[type="text"],
input[type="email"],
textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    font-family: Arial, sans-serif;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button[type="submit"] {
    background-color: #66CC33;
    font-family: 'Bangers', cursive;
    font-size: 1.5em;
    color: white;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

button[type="submit"]:hover {
    background-color: #559922;
}