.contact-form {
    background: linear-gradient(to bottom, #1e3c72, #2a5298);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin-left: 35%;
    margin-top: 5%;
    margin-bottom: 1%;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}
h2 {
    text-align: center;
    color: #ffffff;
    margin-top: 25px;

}

h3 {
    text-align: center;
    color: white;
    margin-bottom: 5px;
}

.input-field {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: linear-gradient(to bottom, #1e3c72, #2a5298);
    border: 1px solid white;
    border-radius: 4px;
    box-sizing: border-box;
}
.textarea-field {
    background: linear-gradient(to bottom, #1e3c72, #2a5298);
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid white;
    border-radius: 4px;
    box-sizing: border-box;
    min-height: 150px;
    resize: vertical;
}
.submit-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.submit-btn:hover {
    background-color: #0056b3;
}
.form-footer {
    text-align: center;
    margin-top: 20px;
}
.form-footer a {
    text-decoration: none;
    color: #007bff;
}
.form-footer a:hover {
    text-decoration: underline;
}