:root {
    --primary-color: #001f3f; /* Deep blue */
    --secondary-color: #ffffff; /* White */
    --tertiary-color: #303030; /* Lighter blue */
}
.contact-form {
    background-color: var(--primary-color) ; /* Deep blue background */
    padding: 2em;
    border-radius: 8px;
    width: 70%;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 20px 0;
}

#title h2 {
    color: var(--tertiary-color);
    font-size: 2em;
    margin: 0;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5em;
    color: #ffffff; /* White text */
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 0.75em;
    margin-bottom: 1em;
    border: none;
    border-bottom: #00509e 2px solid;
    border-radius: 4px;
    background-color: var(--primary-color); /* White background */
    color: #ffffff; /* Black text */
    text-align: center;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 80, 158, 0.5);
}

.contact-form button {
    background-color: #00509e; /* Lighter blue background */
    color: #ffffff; /* White text */
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 25px;
}

.contact-form button:hover {
    background-color: #0073e6; /* Even lighter blue on hover */
}

textarea {
    width: 100%;
    padding: 0.75em;
    margin-bottom: 1em;
    border: none;
    border-bottom:  #00509e 2px solid;
    border-radius: 4px;
    background-color: var(--primary-color); /* White background */
    color: #ffffff; /* Black text */
}