.card-custom {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.card-custom .card-header {
    background-color: rgba(0, 113, 119, 0.9);
    color: white;
    font-size: 1.25rem;
    text-align: center;
    padding: 1rem;
}

.card-custom .card-body {
    background-color: #f8f9fa;
    color: #333;
    padding: 2rem;
}

.card-custom .card-body p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Estilo para las columnas para hacerlo responsivo */
@media (max-width: 768px) {
    .card-custom {
        margin-bottom: 20px;
    }
}

/* Estilo para ocultar las imágenes inicialmente */
.image-container {
display: none;
padding: 10px;
}

/* Puedes ajustar el tamaño de la imagen aquí */
.card-img {
width: 100%;
height: auto;
object-fit: contain;
}