
.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    font-family: "Roboto", sans-serif;
}

.contact-container h1 {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    color: #013365;
    margin-bottom: 30px;
}

.contact-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info {
    margin-top: 10%;
    flex: 1;
    font-size: 1.5rem;
    color: #333;
}

.contact-info p {
    margin-bottom: 20px;
}

.contact-info a {
    text-decoration: none;
    color: #013365;
}

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

.contact-form input,
.contact-form textarea {
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: "Roboto", sans-serif;
}

.contact-form label {
    font-family: "Roboto", sans-serif;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    background-color: #013365;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    font-size: 1.0rem; 
    padding: 12px 20px;
}

.contact-form button:hover {
    background-color: #0172CA;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#status_contact {
    font-size: 0.95rem;
    color: green; 
    margin: 0 auto;
    max-width: 600px;
    word-wrap: break-word;
}

.contact-container {
    flex: 1;
}
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
}