/* Establecer la fuente base y eliminar márgenes por defecto */
body {
    font-family: 'Open Sans', Arial, sans-serif; /* Fuente moderna */
    margin: 0;
    padding: 0;
    background-color: #f8f8f8; /* Fondo blanco-gris muy claro */
    color: #333; /* Texto oscuro para alta legibilidad */
}

/* Contenedor principal para centrar el contenido y limitar el ancho */
.container {
    max-width: 900px;
    margin: 30px auto;
    padding: 40px;
    background-color: white; /* Fondo blanco para el contenido */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* Sombra sutil */
    border-radius: 6px; /* Bordes ligeramente redondeados */
}

/* --- Sección del Logo --- */
.logo-section {
    text-align: center; /* Centrar el logo como en la imagen de referencia */
    padding: 0 0 20px 0;
    border-bottom: 1px solid #ddd; /* Línea divisoria gris claro */
    margin-bottom: 30px;
}

.dimex-logo {
    font-size: 3.5em; /* Tamaño grande para "dimex" */
    font-weight: 700; /* Negrita */
    margin: 0;
    color: #444; /* Color gris oscuro */
}

.capital-text {
    font-size: 1.2em;
    font-weight: 600;
    margin: 0;
    color: #777; /* Gris más claro */
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
}

/* --- Encabezado del Aviso de Privacidad --- */
.privacy-notice-header {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    text-align: center; /* Centrar el título del aviso */
}

.privacy-notice-title {
    font-size: 1.8em;
    font-weight: 700;
    color: #333;
    margin: 0;
    display: block; /* Asegurar que ocupe su propia línea */
}

.last-update {
    font-size: 0.8em;
    color: #777;
    text-align: center; /* Centrar la fecha */
    margin: 5px 0 0 0;
    font-weight: 600;
}

/* --- Títulos de Sección (Preguntas) --- */
.section-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #444; /* Gris oscuro */
    margin-top: 35px;
    margin-bottom: 15px;
    padding-left: 0; /* Eliminar padding de la barra lateral */
    border-left: none; /* Eliminar barra lateral */
    border-bottom: 1px solid #ddd; /* Subrayado sutil */
    padding-bottom: 5px;
}

.subsection-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #555;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* --- Estilo de Párrafo General --- */
.general-info p, .notice-text, .purpose-section p, .data-collected p, .data-transfer p, .arco-rights p, .changes-and-inai p, .cookies-consent p {
    font-size: 0.95em;
    line-height: 1.7;
    color: #555;
    text-align: justify;
    margin-bottom: 15px;
}

/* --- Listas de Puntos (Bullets) --- */
.purpose-list, .data-list, .transfer-list, .contact-details {
    list-style-type: disc; /* Puntos redondos */
    padding-left: 20px;
    margin-bottom: 20px;
}

.document-list {
    list-style-type: decimal; /* Números */
    padding-left: 20px;
    margin-bottom: 20px;
}

.purpose-list li, .data-list li, .transfer-list li, .document-list li, .contact-details li {
    font-size: 0.9em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

/* Destacar Finalidades Secundarias */
.secondary-purpose {
    font-weight: bold;
    color: #666; /* Gris para diferenciar sin usar color */
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 20px;
}

/* Resaltar Notas y Textos Importantes */
.note-text {
    font-style: italic;
    font-size: 0.85em;
    color: #888;
    margin-top: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed #eee; /* Línea punteada para notas */
}

/* Resaltar Contactos */
.contact-highlight {
    font-size: 1.1em;
    font-weight: 700;
    color: #333; /* Negro */
    background-color: #f5f5f5; /* Fondo gris muy claro */
    padding: 5px 10px;
    display: block;
    width: fit-content;
    margin: 10px auto; /* Centrar el contacto */
    border-radius: 4px;
    border: 1px solid #eee;
}

.consent-statement {
    border: 1px solid #ccc; /* Borde gris sutil */
    padding: 18px;
    background-color: #f9f9f9; /* Fondo gris claro */
    font-weight: 600;
    color: #444;
    margin-top: 35px;
    text-align: center; /* Centrar el texto de consentimiento */
    border-radius: 5px;
}