/* Estilos generales */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

/* Encabezado */
.header {
    background: #111827;
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* Sección informativa */
.info-section {
    padding: 40px 0;
}

.info-section ul {
    margin-left: 20px;
}

/* Formulario */
.form-section {
    background: white;
    padding: 40px 0;
    margin-top: 20px;
    border-top: 3px solid #111827;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.contact-form button {
    background: #111827;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #374151;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        width: 95%;
    }

    .contact-form button {
        font-size: 16px;
    }
}
