.contact-form {
    max-width: 700px;
    margin: 2rem auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    color: #003366;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    font-weight: 500;
    color: #003366;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #CCC;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #003366;
    box-shadow: 0 0 3px #66aaff;
}

.contact-form button {
    align-self: flex-start;
    background-color: #003366;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0055aa;
}
