/* Reset */
.contact {
    padding: 60px 0;
    background: #fff;
}

.contact h2 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.contact form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.contact form input,
.contact form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact form button {
    padding: 12px;
    background: #0d2447;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

#formStatus {
    text-align: center;
    margin-top: 15px;
    color: green;
}

/* Footer */
footer {
    background: #0d2447;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}