/* Contenedor Principal en Negro Puro o muy oscuro */
.dark-info-container {
    background-color: #0f0f0f; /* Un negro profundo */
    color: #e0e0e0; /* Blanco suave para evitar fatiga visual */
    font-family: 'roboto', sans-serif !important;
    min-height: 100vh;
    padding: 80px 20px;
    line-height: 1.8;
}

.info-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Títulos con peso y contraste */
.info-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

/* Títulos internos (H2, H3) que vienen del editor */
.info-content h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-content h3 {
    font-size: 1.5rem;
    color: #bbb; /* Un gris claro para subsecciones */
    margin-top: 30px;
}

/* Párrafos legibles */
.info-content p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #cccccc;
}

/* Enlaces (Copiando el verde de tu imagen pero con brillo) */
.info-content a {
    color: #00ffaa; 
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 170, 0.3);
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: #ffffff;
    border-bottom-color: #00ffaa;
    background-color: rgba(0, 255, 170, 0.1);
}

/* Mejoras para las listas */
.info-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.info-content li {
    margin-bottom: 10px;
}