.mensaje {
    padding: 10px;
    margin: 20px 0;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}

.mensaje.exito {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mensaje.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
/* Contact Section */
.contact{
    background-color: #fff;
    border-top: 1px solid #dbdbdb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Contact Information */
.contact-info{
    width: 90%;
    padding: 20px;
}

.contact-info h1{
    font-size: 20px;
    color: #0056b3;
    padding: 10px 0;
    font-weight: 100;
}

.contact-map iframe{
    width: 100%;
    height: 300px;
}

/* Contact Form */
.contact-form{
    width: 90%;
    padding: 20px;
}

.contact-form form{
    display: flex;
    flex-direction: column;
}

.contact-form label{
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

.contact-form input, .contact-form textarea{
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form textarea{
    resize: vertical;
}

.contact-form button{
    width: 90px;
    background-color: #0056b3;
    color: white;
    font-size: 16px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover{
    background-color: #004494;
}
