/***** Párrafos y listas *****/
.custom-text-paragraph, 
.custom-paragraph {
    color: #000000;
    text-align: justify;
    font-size: 18px;
    line-height: 1.8;
}

.custom-list li {
    color: #000000;
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
}

/***** Cards con imagen de fondo ******/
.card-cover {
    position: relative;
    background-size: cover;
    background-position: center;
}

.card-cover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.63); /* Capa oscura */
    z-index: 1; /* Debajo del contenido */
}

.card-cover .d-flex {
    position: relative;
    z-index: 2; /* Por encima de la capa negra */
}

/***** Imágenes ******/
.image-container {
    text-align: center; /* Centra el contenido */
}

.python-image {
    max-width: 768px;
    height: 480px;
}

/***** Ajustes responsivos para imágenes ******/
@media (max-width: 768px) {
    .python-image {
        width: 80%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .python-image {
        width: 100%;
        height: auto;
    }
}