body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}
h1 {
    color: #2c3e50;
    border-bottom: 2px solid #f1c40f;
    padding-bottom: 10px;
}
.contact-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}
button {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
button:hover {
    background: #2980b9;
}
.privacy-check {
    font-size: 14px;
    margin: 20px 0;
}
.privacy-check label {
    display: flex !important;  /* Alinea checkbox y texto en línea */
    align-items: center;      /* Centra verticalmente */
    gap: 8px;                 /* Espacio entre checkbox y texto */
}
.privacy-check input[type="checkbox"] {
    margin: 0 !important;     /* Elimina márgenes predeterminados */
    width: auto;              /* Ancho natural */
}

button[type="submit"] {
    background: #2c3e50; /* Color de tu marca */
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}
button[type="submit"]:hover {
    background: #1a2634; /* Color más oscuro al pasar el mouse */
}