/*NUEVO  Estilos del Acordeón */
        .acordeon-contenedor {
            width: 100%;
            max-width: 800px;
            margin: 20px auto;
            font-family: Arial, sans-serif;
        }

        .acordeon-item {
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-bottom: 10px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .acordeon-titulo {
            background-color: #f7f7f7;
            color: #333;
            padding: 18px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        
        .acordeon-titulo:hover {
            background-color: #f1f1f1;
        }

        .acordeon-titulo.activo {
            background-color: #e9e9e9;
        }

        .acordeon-titulo span {
            font-size: 24px;
            transform: rotate(0deg);
            transition: transform 0.3s ease;
        }

        .acordeon-titulo.activo span {
            transform: rotate(45deg);
        }

        .acordeon-contenido {
            max-height: 0;
            padding: 0 25px;
            overflow: hidden;
            background-color: #fff;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
        }

        .acordeon-contenido.mostrar {
            max-height: 500px; /* Ajusta este valor si el contenido es más largo */
            padding: 25px;
        }
        
        .acordeon-contenido p {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            margin: 0 0 15px 0;
            text-align: justify;
        }

        .acordeon-contenido ul {
            padding-left: 20px;
            margin: 15px 0;
            color: #555;
        }

        .acordeon-contenido h3 {
            text-align: center;
            margin-top: 20px;
            font-weight: bold;
            color: #2c3e50;
        }