/* Custom Contact Form Styles */
.custom-contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 90%;
    margin-bottom: 50px;
}

.custom-contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form textarea,
.custom-contact-form input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.custom-contact-form input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
}

.custom-contact-form input[type="submit"]:hover {
    background-color: #005177;
}

/* Custom Logo Styles */
.custom-logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 20px; /* Center the logo and add some space below it */
}
h1, h2, h3, h4, h5, h6 {
    display: flex;
    justify-content: center;
}
/* Form Messages Styles */
/* Form Messages Styles */
#form-messages {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 3px;
    margin-top: 20px;
}

#form-messages.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-messages.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
