/* Estilos generales del formulario de contacto */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    background: transparent;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    text-align: left;
}

.contact-form h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #ebecf3;
}

/* Labels */
.contact-form label {
    display: block;
    margin: 12px 0 6px;
    font-weight: bold;
    color: #444;
}

/* Inputs y textarea */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #1a6e13;
    border-radius: 6px;
    font-size: 16px;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007BFF;
    outline: none;
}

/* Botón enviar */
.contact-form button {
    display: block;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #007BFF;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #0056b3;
}
